summaryrefslogtreecommitdiff
path: root/packages/backend/migration/1673336077243-PollChoiceLength.js
blob: 810c626e043bf566f95b767629ab474a72853fe6 (plain)
1
2
3
4
5
6
7
8
9
10
11
export class PollChoiceLength1673336077243 {
    name = 'PollChoiceLength1673336077243'

    async up(queryRunner) {
				await queryRunner.query(`ALTER TABLE "poll" ALTER COLUMN "choices" TYPE character varying(256) array`);
    }

    async down(queryRunner) {
			await queryRunner.query(`ALTER TABLE "poll" ALTER COLUMN "choices" TYPE character varying(128) array`);
    }
}