Fixed the flag_approved down migration

This commit is contained in:
2022-02-15 12:53:50 +00:00
parent 091febf255
commit 6cb5d759b4

View File

@@ -49,7 +49,7 @@ class UpdateOrganisationsTable extends Migration
public function down()
{
$this->schema->table('organisations', function (Blueprint $table) {
$table->dropColumn('flag_verified');
$table->dropColumn('flag_approved');
});
}
}