hippofish/packages/backend/src/migration/1673336077243-PollChoiceLength.ts

15 lines
485 B
TypeScript

import type { MigrationInterface, QueryRunner } from "typeorm";
export class PollChoiceLength1673336077243 implements MigrationInterface {
async up(queryRunner: QueryRunner): Promise<void> {
await queryRunner.query(
`ALTER TABLE "poll" ALTER COLUMN "choices" TYPE character varying(256) array`,
);
}
async down(queryRunner: QueryRunner): Promise<void> {
await queryRunner.query(
`ALTER TABLE "poll" ALTER COLUMN "choices" TYPE character varying(128) array`,
);
}
}