import { Migration } from '@mikro-orm/migrations'; export class Migration20250312011946 extends Migration { override async up(): Promise { this.addSql(`alter table \`map_object\` change \`pivot_points\` \`depth_offsets\` json not null;`); } override async down(): Promise { this.addSql(`alter table \`map_object\` change \`depth_offsets\` \`pivot_points\` json not null;`); } }