Remove remaining room data #114

Merged
Johann150 merged 2 commits from remove/rooms into main 2022-09-07 08:30:35 +00:00
2 changed files with 11 additions and 7 deletions
Showing only changes of commit d614c4230c - Show all commits

View file

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

View file

@ -124,13 +124,6 @@ export class UserProfile {
})
public clientData: Record<string, any>;
// TODO: そのうち消す
@Column('jsonb', {
default: {},
comment: 'The room data of the User.',
})
public room: Record<string, any>;
@Column('boolean', {
default: false,
})