summaryrefslogtreecommitdiff
path: root/packages/backend/migration/1580154400017-v12-9.js
blob: 3715798f19fe0f3cdfa7add229fc804f2e000bbc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
export class v1291580154400017 {
    constructor() {
        this.name = 'v1291580154400017';
    }
    async up(queryRunner) {
        await queryRunner.query(`ALTER TABLE "antenna" ADD "withReplies" boolean NOT NULL DEFAULT false`, undefined);
    }
    async down(queryRunner) {
        await queryRunner.query(`ALTER TABLE "antenna" DROP COLUMN "withReplies"`, undefined);
    }
}