1
0
Fork 1
mirror of https://example.com synced 2024-11-23 04:06:40 +09:00
firefish/packages/backend/migration/1673336077243-PollChoiceLength.js

16 lines
376 B
JavaScript
Raw Normal View History

2023-07-20 04:17:05 +09:00
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`,
);
}
}