1
1
mirror of https://github.com/kokonect-link/cherrypick synced 2025-01-08 19:04:05 +09:00
cherrypick/packages/backend/migration/1711008460816-external-website-warn.js

17 lines
490 B
JavaScript
Raw Normal View History

2024-03-22 17:12:31 +09:00
/*
* SPDX-FileCopyrightText: syuilo and misskey-project
* SPDX-License-Identifier: AGPL-3.0-only
*/
export class ExternalWebsiteWarn1711008460816 {
name = 'ExternalWebsiteWarn1711008460816'
async up(queryRunner) {
await queryRunner.query(`ALTER TABLE "meta" ADD "wellKnownWebsites" character varying(3072) array NOT NULL DEFAULT '{}'`);
}
async down(queryRunner) {
await queryRunner.query(`ALTER TABLE "meta" DROP COLUMN "wellKnownWebsites"`);
}
}