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