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