import { Migration } from '@mikro-orm/migrations'; export class Migration20260626160000 extends Migration { override async up(): Promise { this.addSql(`alter table "request_items" drop column "quantity";`); } override async down(): Promise { this.addSql(`alter table "request_items" add column "quantity" int not null default 1;`); } }