summaryrefslogtreecommitdiff
path: root/packages/backend/migration/1582019042083-featured-injecttion.js
blob: 7f8790b01b2dbc2cf9cde51dd0f024ee515434e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
export class featuredInjecttion1582019042083 {
    constructor() {
        this.name = 'featuredInjecttion1582019042083';
    }
    async up(queryRunner) {
        await queryRunner.query(`ALTER TABLE "user_profile" ADD "injectFeaturedNote" boolean NOT NULL DEFAULT true`, undefined);
    }
    async down(queryRunner) {
        await queryRunner.query(`ALTER TABLE "user_profile" DROP COLUMN "injectFeaturedNote"`, undefined);
    }
}