jormungandr-bite/packages/backend/src/migration/1629968054000_userInstanceBlocks.ts
2023-10-13 18:44:25 +02:00

19 lines
659 B
TypeScript

import { MigrationInterface, QueryRunner } from "typeorm";
export class userInstanceBlocks1629968054000 implements MigrationInterface {
constructor() {
this.name = "userInstanceBlocks1629968054000";
}
async up(queryRunner: QueryRunner): Promise<void> {
await queryRunner.query(
`ALTER TABLE "user_profile" ADD "mutedInstances" jsonb NOT NULL DEFAULT '[]'`,
);
await queryRunner.query(
`COMMENT ON COLUMN "user_profile"."mutedInstances" IS 'List of instances muted by the user.'`,
);
}
async down(queryRunner: QueryRunner): Promise<void> {
await queryRunner.query(
`ALTER TABLE "user_profile" DROP COLUMN "mutedInstances"`,
);
}
}