. */ use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class AddDeletedAtColumnToGenres extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::table('genres', function(Blueprint $table) { $table->softDeletes()->index(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('genres', function(Blueprint $table) { $table->dropSoftDeletes(); }); } }