summaryrefslogtreecommitdiff
path: root/packages/backend/migration/1562448332510-PageTitleHideOption.js
blob: 8fc78d202f5cc26f8844b8bc3d527f03b26f1ca1 (plain)
1
2
3
4
5
6
7
8
9
10
export class PageTitleHideOption1562448332510 {
    async up(queryRunner) {
        await queryRunner.query(`ALTER TABLE "page" ADD "hideTitleWhenPinned" boolean NOT NULL DEFAULT false`);
    }
    async down(queryRunner) {
        await queryRunner.query(`ALTER TABLE "page" DROP COLUMN "hideTitleWhenPinned"`);
    }
}