Fixed incorrect table name in migration

This commit is contained in:
2022-02-11 10:56:37 +00:00
parent f530c85964
commit ea0999b1fa

View File

@@ -44,7 +44,7 @@ class UpdateOrganisationApprovalsTable extends Migration
*/ */
public function down() public function down()
{ {
$this->schema->table('organisations', function (Blueprint $table) { $this->schema->table('organisation_approvals', function (Blueprint $table) {
$table->integer('approver_id')->unsigned()->change(); $table->integer('approver_id')->unsigned()->change();
}); });
} }