mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-14 22:17:30 -07:00
15 lines
395 B
JavaScript
15 lines
395 B
JavaScript
export class emailRequiredForSignup1633068642000 {
|
|
constructor() {
|
|
this.name = "emailRequiredForSignup1633068642000";
|
|
}
|
|
async up(queryRunner) {
|
|
await queryRunner.query(
|
|
`ALTER TABLE "meta" ADD "emailRequiredForSignup" boolean NOT NULL DEFAULT false`,
|
|
);
|
|
}
|
|
async down(queryRunner) {
|
|
await queryRunner.query(
|
|
`ALTER TABLE "meta" DROP COLUMN "emailRequiredForSignup"`,
|
|
);
|
|
}
|
|
}
|