1
0
Fork 1
mirror of https://example.com synced 2024-11-23 21:26:40 +09:00
firefish/packages/backend/migration/1646633030285-chart-federation-active.js

22 lines
594 B
JavaScript
Raw Normal View History

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