diff --git a/src/migrations/1546788508314-MakeNameHistoryValueLengthLonger.ts b/src/migrations/1546788508314-MakeNameHistoryValueLengthLonger.ts new file mode 100644 index 00000000..c58da069 --- /dev/null +++ b/src/migrations/1546788508314-MakeNameHistoryValueLengthLonger.ts @@ -0,0 +1,17 @@ +import { MigrationInterface, QueryRunner } from "typeorm"; + +export class MakeNameHistoryValueLengthLonger1546788508314 implements MigrationInterface { + public async up(queryRunner: QueryRunner): Promise { + await queryRunner.query(` + ALTER TABLE \`name_history\` + CHANGE COLUMN \`value\` \`value\` VARCHAR(160) NULL DEFAULT NULL COLLATE 'utf8mb4_swedish_ci' AFTER \`type\`; + `); + } + + public async down(queryRunner: QueryRunner): Promise { + await queryRunner.query(` + ALTER TABLE \`name_history\` + CHANGE COLUMN \`value\` \`value\` VARCHAR(128) NULL DEFAULT NULL COLLATE 'utf8mb4_swedish_ci' AFTER \`type\`; + `); + } +}