1Schema::table('table_name', function (Blueprint $table) {
2 $table->string('column_name', 255)->nullable()->after('previous_column_name');
3 });
1To Generate Laravel Migrations from an existing database.
2
3Use the following package.
4
5https://github.com/Xethron/migrations-generator
1public function up()
2{
3 Schema::table('users', function($table) {
4 $table->integer('paid');
5 });
6}