mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-15 06:27:34 -07:00
8a506acf54
Fix #8363
10 lines
291 B
JavaScript
10 lines
291 B
JavaScript
|
|
|
|
export class room1565634203341 {
|
|
async up(queryRunner) {
|
|
await queryRunner.query(`ALTER TABLE "user_profile" ADD "room" jsonb NOT NULL DEFAULT '{}'`);
|
|
}
|
|
async down(queryRunner) {
|
|
await queryRunner.query(`ALTER TABLE "user_profile" DROP COLUMN "room"`);
|
|
}
|
|
}
|