Fixed 267U.pre2
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
export class userInstanceBlocks1629968054000 {
|
||||
constructor(){
|
||||
this.name = "userInstanceBlocks1629968054000";
|
||||
}
|
||||
async up(queryRunner) {
|
||||
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) {
|
||||
await queryRunner.query(`ALTER TABLE "user_profile" DROP COLUMN "mutedInstances"`);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user