1
0
Fork 1
mirror of https://example.com synced 2024-11-24 02:56:40 +09:00
firefish/packages/backend/migration/1660068273737GuestTimeline.js

10 lines
338 B
JavaScript
Raw Normal View History

2022-08-10 11:56:03 +09:00
export class GuestTimeline1660068273737 {
name = 'GuestTimeline1660068273737'
async up(queryRunner) {
await queryRunner.query(`ALTER TABLE "meta" ADD "enableGuestTimeline" boolean NOT NULL DEFAULT false`);
}
async down(queryRunner) {
await queryRunner.query(`ALTER TABLE "meta" DROP COLUMN "enableGuestTimeline"`);
}
}