mirror of
https://github.com/kokonect-link/cherrypick
synced 2024-11-01 15:45:58 +09:00
15 lines
629 B
JavaScript
15 lines
629 B
JavaScript
|
"use strict";
|
||
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||
|
class instancePinnedPages1605585339718 {
|
||
|
constructor() {
|
||
|
this.name = 'instancePinnedPages1605585339718';
|
||
|
}
|
||
|
async up(queryRunner) {
|
||
|
await queryRunner.query(`ALTER TABLE "meta" ADD "pinnedPages" character varying(512) array NOT NULL DEFAULT '{"/featured", "/channels", "/explore", "/pages", "/about-misskey"}'::varchar[]`);
|
||
|
}
|
||
|
async down(queryRunner) {
|
||
|
await queryRunner.query(`ALTER TABLE "meta" DROP COLUMN "pinnedPages"`);
|
||
|
}
|
||
|
}
|
||
|
exports.instancePinnedPages1605585339718 = instancePinnedPages1605585339718;
|