forked from FoundKeyGang/FoundKey
Francis Dinh
57f4312a27
Also remove the contributors list from about-foundkey (renamed from about-misskey). Some comments that referenced Misskey were also translated to English. Closes: FoundKeyGang/FoundKey#141
11 lines
503 B
JavaScript
11 lines
503 B
JavaScript
export class updatePinnedPages1662999442223 {
|
|
name = 'updatePinnedPages1662999442223'
|
|
|
|
async up(queryRunner) {
|
|
await queryRunner.query(`ALTER TABLE "meta" ALTER COLUMN "pinnedPages" SET DEFAULT '{"/featured", "/channels", "/explore", "/pages", "/about-foundkey"}'::varchar[]`);
|
|
}
|
|
|
|
async down(queryRunner) {
|
|
await queryRunner.query(`ALTER TABLE "meta" ALTER COLUMN "pinnedPages" SET DEFAULT '{"/featured", "/channels", "/explore", "/pages", "/about-misskey"}'::varchar[]`);
|
|
}
|
|
}
|