import { Migration } from '@mikro-orm/migrations'; export class Migration20260129082610 extends Migration { override async up(): Promise { this.addSql(`alter table "onboarding_requests" add column "processing_started_at" timestamptz null;`); } override async down(): Promise { this.addSql(`alter table "onboarding_requests" drop column "processing_started_at";`); } }