jormungandr-bite/packages/backend/migration/1646633030285-chart-federation-active.js

22 lines
594 B
JavaScript
Raw Normal View History

2022-03-06 23:10:16 -07:00
export class chartFederationActive1646633030285 {
2023-04-06 19:56:46 -06:00
name = "chartFederationActive1646633030285";
2022-03-06 23:10:16 -07:00
2023-04-06 19:56:46 -06: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-06 23:10:16 -07:00
2023-04-06 19:56:46 -06: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-06 23:10:16 -07:00
}