iceshrimp-legacy/packages/backend/migration/1673336077243-PollChoiceLength.js

16 lines
376 B
JavaScript
Raw Normal View History

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