mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-16 06:57:36 -07:00
3c373a2e79
default false
rc 9
no async
welcome explore button to `/explore`
fix: 🔥 Remove meta implementation in routing for now
9 lines
338 B
JavaScript
9 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"`);
|
|
}
|
|
}
|