boolean('local_profile')->default(true)->index()->after('following_id'); $table->boolean('local_following')->default(true)->index()->after('local_profile'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('followers', function (Blueprint $table) { $table->dropColumn('local_profile'); $table->dropColumn('local_following'); }); } }