mirror of
https://git.boykissers.com/pawkey/pawkey-sk.git
synced 2025-12-20 12:14:18 +00:00
12 lines
322 B
JavaScript
12 lines
322 B
JavaScript
export class AddUserProfileDefaultCw1738446745738 {
|
|
name = 'AddUserProfileDefaultCw1738446745738'
|
|
|
|
async up(queryRunner) {
|
|
await queryRunner.query(`ALTER TABLE "user_profile" ADD "default_cw" text`);
|
|
}
|
|
|
|
async down(queryRunner) {
|
|
await queryRunner.query(`ALTER TABLE "user_profile" DROP COLUMN "default_cw"`);
|
|
}
|
|
}
|