15 lines
485 B
TypeScript
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`,
|
|
);
|
|
}
|
|
}
|