iceshrimp-legacy/packages/backend/migration/1646633030285-chart-federation-active.js

22 lines
594 B
JavaScript
Raw Normal View History

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