mirror of
https://github.com/kokonect-link/cherrypick
synced 2024-11-01 15:45:58 +09:00
e41619775f
Resolve #11099
12 lines
376 B
JavaScript
12 lines
376 B
JavaScript
export class VerifiedLinks1695260774117 {
|
|
name = 'VerifiedLinks1695260774117'
|
|
|
|
async up(queryRunner) {
|
|
await queryRunner.query(`ALTER TABLE "user_profile" ADD "verifiedLinks" character varying array NOT NULL DEFAULT '{}'`);
|
|
}
|
|
|
|
async down(queryRunner) {
|
|
await queryRunner.query(`ALTER TABLE "user_profile" DROP COLUMN "verifiedLinks"`);
|
|
}
|
|
}
|