mirror of
https://git.boykissers.com/pawkey/pawkey-sk.git
synced 2025-12-20 12:14:18 +00:00
12 lines
289 B
JavaScript
12 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"`);
|
|
}
|
|
}
|