1
1
mirror of https://github.com/kokonect-link/cherrypick synced 2025-01-08 02:43:59 +09:00
cherrypick/packages/backend/migration/1711008460816-external-website-warn.js
kakkokari-gtyih 4590046e25 spdx
2024-03-22 17:12:31 +09:00

17 lines
490 B
JavaScript

/*
* 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"`);
}
}