1
1
mirror of https://github.com/kokonect-link/cherrypick synced 2024-11-28 06:48:36 +09:00

fix(backend): Missing Migration

This commit is contained in:
NoriDev 2023-05-16 19:00:45 +09:00
parent 1c953aa6a7
commit a147ff8f8c

View File

@ -0,0 +1,11 @@
export class tweakVarcharLength21684231006000 {
name = 'tweakVarcharLength21684231006000'
async up(queryRunner) {
await queryRunner.query(`ALTER TABLE "meta" ALTER COLUMN "translatorType" TYPE character varying(1024)`, undefined);
}
async down(queryRunner) {
}
}