2020-11-16 21:59:15 -08:00
|
|
|
import {MigrationInterface, QueryRunner} from "typeorm";
|
|
|
|
|
|
|
|
export class instancePinnedPages1605585339718 implements MigrationInterface {
|
|
|
|
name = 'instancePinnedPages1605585339718'
|
|
|
|
|
|
|
|
public async up(queryRunner: QueryRunner): Promise<void> {
|
2020-11-25 04:31:34 -08:00
|
|
|
await queryRunner.query(`ALTER TABLE "meta" ADD "pinnedPages" character varying(512) array NOT NULL DEFAULT '{"/featured", "/channels", "/explore", "/pages", "/about-misskey"}'::varchar[]`);
|
2020-11-16 21:59:15 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
public async down(queryRunner: QueryRunner): Promise<void> {
|
|
|
|
await queryRunner.query(`ALTER TABLE "meta" DROP COLUMN "pinnedPages"`);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|