blob: fd7cb6d5a1c86d5521f00c9f33927e12cc05fa35 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
export class federationChartPubsub1645599900873 {
name = 'federationChartPubsub1645599900873'
async up(queryRunner) {
await queryRunner.query(`ALTER TABLE "__chart__federation" ADD "___pubsub" smallint NOT NULL DEFAULT '0'`);
await queryRunner.query(`ALTER TABLE "__chart_day__federation" ADD "___pubsub" smallint NOT NULL DEFAULT '0'`);
}
async down(queryRunner) {
await queryRunner.query(`ALTER TABLE "__chart_day__federation" DROP COLUMN "___pubsub"`);
await queryRunner.query(`ALTER TABLE "__chart__federation" DROP COLUMN "___pubsub"`);
}
}
|