mirror of
https://codeberg.org/yeentown/barkey.git
synced 2025-04-28 09:36:56 +00:00
11 lines
289 B
JavaScript
11 lines
289 B
JavaScript
export class AddUserMandatoryCW1738043621143 {
|
|
name = 'AddUserCW1738043621143'
|
|
|
|
async up(queryRunner) {
|
|
await queryRunner.query(`ALTER TABLE "user" ADD "mandatoryCW" text`);
|
|
}
|
|
|
|
async down(queryRunner) {
|
|
await queryRunner.query(`ALTER TABLE "user" DROP COLUMN "mandatoryCW"`);
|
|
}
|
|
}
|