1
0
Fork 1
mirror of https://example.com synced 2024-11-23 05:36:39 +09:00
firefish/packages/backend/migration/1565634203341-room.js
2023-07-20 04:17:05 +09:00

10 lines
273 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"`);
}
}