import { Migration } from '@mikro-orm/migrations'; export class Migration20260726120000_addEnableAiChatToRestaurants extends Migration { override async up(): Promise { this.addSql( `alter table "restaurants" add column "enable_ai_chat" boolean not null default false;`, ); } override async down(): Promise { this.addSql(`alter table "restaurants" drop column "enable_ai_chat";`); } }