mirror of
https://github.com/kokonect-link/cherrypick
synced 2024-11-01 07:35:57 +09:00
b875cc9949
* feat: アカウント作成にメールアドレス必須にするオプション
* ui
* fix bug
* fix bug
* fix bug
* 🎨
15 lines
540 B
TypeScript
15 lines
540 B
TypeScript
import {MigrationInterface, QueryRunner} from "typeorm";
|
|
|
|
export class emailRequiredForSignup1633068642000 implements MigrationInterface {
|
|
name = 'emailRequiredForSignup1633068642000'
|
|
|
|
public async up(queryRunner: QueryRunner): Promise<void> {
|
|
await queryRunner.query(`ALTER TABLE "meta" ADD "emailRequiredForSignup" boolean NOT NULL DEFAULT false`);
|
|
}
|
|
|
|
public async down(queryRunner: QueryRunner): Promise<void> {
|
|
await queryRunner.query(`ALTER TABLE "meta" DROP COLUMN "emailRequiredForSignup"`);
|
|
}
|
|
|
|
}
|