1
1
mirror of https://github.com/kokonect-link/cherrypick synced 2024-12-04 17:58:43 +09:00
cherrypick/packages/backend/migration/1684231006000-tweak-varchar-length2.js

17 lines
418 B
JavaScript
Raw Normal View History

/*
* SPDX-FileCopyrightText: syuilo and noridev and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
2023-05-16 19:00:45 +09:00
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) {
}
}