mirror of
https://activitypub.software/TransFem-org/Sharkey.git
synced 2025-04-13 09:44:40 +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"`);
|
|
}
|
|
}
|