a8e8b2e2cf
Fix #8363
11 lines
346 B
JavaScript
11 lines
346 B
JavaScript
|
|
|
|
export class PasswordLessLogin1562422242907 {
|
|
async up(queryRunner) {
|
|
await queryRunner.query(`ALTER TABLE "user_profile" ADD COLUMN "usePasswordLessLogin" boolean DEFAULT false NOT NULL`);
|
|
}
|
|
async down(queryRunner) {
|
|
await queryRunner.query(`ALTER TABLE "user_profile" DROP COLUMN "usePasswordLessLogin"`);
|
|
}
|
|
}
|