12 lines
353 B
JavaScript
12 lines
353 B
JavaScript
export class User2faBackupCodes1690569881926 {
|
|
name = 'User2faBackupCodes1690569881926'
|
|
|
|
async up(queryRunner) {
|
|
await queryRunner.query(`ALTER TABLE "user_profile" ADD "twoFactorBackupSecret" character varying array`);
|
|
}
|
|
|
|
async down(queryRunner) {
|
|
await queryRunner.query(`ALTER TABLE "user_profile" DROP COLUMN "twoFactorBackupSecret"`);
|
|
}
|
|
}
|