1
0
Fork 1
mirror of https://example.com synced 2024-11-23 07:46:38 +09:00
firefish/packages/backend/migration/1660068273737GuestTimeline.js

14 lines
345 B
JavaScript
Raw Normal View History

2023-07-20 04:17:05 +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"`,
);
}
}