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

17 lines
418 B
JavaScript

/*
* SPDX-FileCopyrightText: syuilo and noridev and other misskey, cherrypick contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
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) {
}
}