mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-24 19:07:32 -07:00
19 lines
659 B
TypeScript
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"`,
|
|
);
|
|
}
|
|
}
|