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

16 lines
376 B
JavaScript
Raw Normal View History

export class PollChoiceLength1673336077243 {
2023-04-07 10:56:46 +09:00
name = "PollChoiceLength1673336077243";
async up(queryRunner) {
2023-04-07 10:56:46 +09:00
await queryRunner.query(
`ALTER TABLE "poll" ALTER COLUMN "choices" TYPE character varying(256) array`,
);
}
async down(queryRunner) {
2023-04-07 10:56:46 +09:00
await queryRunner.query(
`ALTER TABLE "poll" ALTER COLUMN "choices" TYPE character varying(128) array`,
);
}
}