mirror of
https://iceshrimp.dev/crimekillz/trashposs
synced 2024-11-23 17:29:05 +01:00
44a3e55b39
Co-authored-by: Syuilo <Syuilotan@yahoo.co.jp> Closes #9433
12 lines
360 B
JavaScript
12 lines
360 B
JavaScript
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`);
|
|
}
|
|
}
|