summaryrefslogtreecommitdiff
path: root/packages/backend/migration/1656772790599-user-moderation-note.js
blob: 133bcffe1a7e069fae0ea083812cf2226bb27e52 (plain)
1
2
3
4
5
6
7
8
9
10
11
export class userModerationNote1656772790599 {
    name = 'userModerationNote1656772790599'

    async up(queryRunner) {
        await queryRunner.query(`ALTER TABLE "user_profile" ADD "moderationNote" character varying(8192) NOT NULL DEFAULT ''`);
    }

    async down(queryRunner) {
        await queryRunner.query(`ALTER TABLE "user_profile" DROP COLUMN "moderationNote"`);
    }
}