update order print

This commit is contained in:
2026-07-02 19:49:15 +03:30
parent 56bea20add
commit fdf06b5d88
14 changed files with 189 additions and 63 deletions
@@ -1,13 +0,0 @@
import { Migration } from '@mikro-orm/migrations';
export class Migration20260626160000 extends Migration {
override async up(): Promise<void> {
this.addSql(`alter table "request_items" drop column "quantity";`);
}
override async down(): Promise<void> {
this.addSql(`alter table "request_items" add column "quantity" int not null default 1;`);
}
}