summary refs log tree commit diff
path: root/src/util/migration/postgres
diff options
context:
space:
mode:
authorRory& <root@rory.gay>2026-03-26 15:14:18 +0100
committerRory& <root@rory.gay>2026-03-26 15:14:18 +0100
commit53ab01c4e2918fa6fd67ca8642efb21f5fc1a63a (patch)
tree3d68fe500558fab55e85ff5158f715890ae4263f /src/util/migration/postgres
parentEmbedHandlers: use youtube handler for youtube music, use OrmUtils.mergeDeep ... (diff)
downloadserver-ts-53ab01c4e2918fa6fd67ca8642efb21f5fc1a63a.tar.xz
EmbedHandlers: more configuration for embeds, switch to storing all returned embeds
Diffstat (limited to 'src/util/migration/postgres')
-rw-r--r--src/util/migration/postgres/1772404321403-EmbedCacheMultiEmbed.ts16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/util/migration/postgres/1772404321403-EmbedCacheMultiEmbed.ts b/src/util/migration/postgres/1772404321403-EmbedCacheMultiEmbed.ts
new file mode 100644

index 000000000..55e80fdcf --- /dev/null +++ b/src/util/migration/postgres/1772404321403-EmbedCacheMultiEmbed.ts
@@ -0,0 +1,16 @@ +import { MigrationInterface, QueryRunner } from "typeorm"; + +export class EmbedCacheCreatedAt1772404321403 implements MigrationInterface { + name = "EmbedCacheCreatedAt1772404321403"; + + public async up(queryRunner: QueryRunner): Promise<void> { + await queryRunner.query(`ALTER TABLE "embed_cache" ALTER COLUMN "embed" DROP NOT NULL;`); + await queryRunner.query(`ALTER TABLE "embed_cache" ADD "embeds" text NULL;`); + } + + public async down(queryRunner: QueryRunner): Promise<void> { + await queryRunner.query(`ALTER TABLE "embed_cache" DROP COLUMN "embeds"`); + await queryRunner.query(`UPDATE "embed_cache" SET "embed" = '{}' WHERE "embed" IS NULL;`); + await queryRunner.query(`ALTER TABLE "embed_cache" ALTER COLUMN "embed" SET NOT NULL;`); + } +}