import { Migration } from '@mikro-orm/migrations'; export class Migration20260316055843 extends Migration { override async up(): Promise { this.addSql(`alter table "company" add column "is_rented" boolean not null default false, add column "rent_contract_images" jsonb null, add column "rent_end_at" timestamptz null;`); } }