update prepare time
deploy to danak / build_and_deploy (push) Has been cancelled

This commit is contained in:
2026-07-01 14:05:39 +03:30
parent bd084e2e63
commit 18f200df9f
6 changed files with 96 additions and 0 deletions
@@ -0,0 +1,13 @@
import { Migration } from '@mikro-orm/migrations';
export class Migration20260701120000_addPrepareTimeToOrders extends Migration {
override async up(): Promise<void> {
this.addSql(`alter table "orders" add column "prepare_time" int null;`);
}
override async down(): Promise<void> {
this.addSql(`alter table "orders" drop column "prepare_time";`);
}
}