import { MigrationInterface, QueryRunner } from 'typeorm'; /** * Board.sourceImportSessionId — zero-to-twin import 로 생성된 보드의 source 추적. * board-import 의 ImportSession.id 와 약결합 (string FK 없이). * synchronize:true 환경에서는 entity 변경만으로 자동 적용되지만, 명시적 migration 으로 * synchronize:false 운영 환경도 커버. */ export declare class AddSourceImportSessionToBoard1762190000000 implements MigrationInterface { up(queryRunner: QueryRunner): Promise; down(queryRunner: QueryRunner): Promise; }