rudeshark.net/packages/backend/migration/1660068273737GuestTimeline.js
ThatOneCalculator 4fcf5b1081 feat: togglable guest timeline
default false

rc 9

no async

welcome explore button to `/explore`

fix: 🔥 Remove meta implementation in routing for now
2022-08-09 13:09:54 -07:00

10 lines
338 B
JavaScript

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