boolean('active')->nullable()->index(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('stories', function (Blueprint $table) { $table->dropColumn('active'); }); } }