calckey/packages/backend/migration/1646633030285-chart-federat...

22 lines
594 B
JavaScript
Raw Permalink Normal View History

2022-03-07 06:10:16 +00:00
export class chartFederationActive1646633030285 {
2023-04-07 01:56:46 +00:00
name = "chartFederationActive1646633030285";
2022-03-07 06:10:16 +00:00
2023-04-07 01:56:46 +00:00
async up(queryRunner) {
await queryRunner.query(
`ALTER TABLE "__chart__federation" ADD "___active" smallint NOT NULL DEFAULT '0'`,
);
await queryRunner.query(
`ALTER TABLE "__chart_day__federation" ADD "___active" smallint NOT NULL DEFAULT '0'`,
);
}
2022-03-07 06:10:16 +00:00
2023-04-07 01:56:46 +00:00
async down(queryRunner) {
await queryRunner.query(
`ALTER TABLE "__chart_day__federation" DROP COLUMN "___active"`,
);
await queryRunner.query(
`ALTER TABLE "__chart__federation" DROP COLUMN "___active"`,
);
}
2022-03-07 06:10:16 +00:00
}