mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-15 06:27:34 -07:00
13 lines
345 B
JavaScript
13 lines
345 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"`,
|
|
);
|
|
}
|
|
}
|