import { MigrationInterface, QueryRunner } from 'typeorm'; export class AddLinkMetadata1000000000005 implements MigrationInterface { async up(queryRunner: QueryRunner): Promise { await queryRunner.query(`ALTER TABLE "messages" ADD COLUMN "linkMetadata" text`); } async down(queryRunner: QueryRunner): Promise { // SQLite does not support DROP COLUMN; column is nullable and harmless. } }