add bg type
deploy to danak / build_and_deploy (push) Has been cancelled

This commit is contained in:
2026-06-22 11:36:05 +03:30
parent d357dcd224
commit 7ce2ddfe5d
4 changed files with 68 additions and 0 deletions
@@ -0,0 +1,10 @@
import { Migration } from '@mikro-orm/migrations';
export class Migration20260622080529 extends Migration {
override async up(): Promise<void> {
this.addSql(`alter table "restaurants" add column "bg_type" varchar(255) null;`);
}
}