Merge branch 'develop' into schedule-note

This commit is contained in:
かっこかり 2023-11-27 21:21:25 +09:00 committed by GitHub
commit 1a54663956
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
76 changed files with 1820 additions and 1114 deletions

View file

@ -0,0 +1,11 @@
export class HardMute1700383825690 {
name = 'HardMute1700383825690'
async up(queryRunner) {
await queryRunner.query(`ALTER TABLE "user_profile" ADD "hardMutedWords" jsonb NOT NULL DEFAULT '[]'`);
}
async down(queryRunner) {
await queryRunner.query(`ALTER TABLE "user_profile" DROP COLUMN "hardMutedWords"`);
}
}