1
0
Fork 1
mirror of https://example.com synced 2024-11-27 15:46:40 +09:00
firefish/packages/backend/migration/1680375641101-clean-charts.js

26 lines
828 B
JavaScript
Raw Normal View History

2023-04-02 04:03:49 +09:00
export class CleanCharts1680375641101 {
2023-04-07 10:56:46 +09:00
constructor() {
this.name = "CleanCharts1680375641101";
}
async up(queryRunner) {
await queryRunner.query(
2023-06-06 08:40:48 +09:00
"delete from __chart__hashtag where ___local_users = 0 and ___remote_users = 0;",
2023-04-07 10:56:46 +09:00
);
await queryRunner.query(
2023-06-06 08:40:48 +09:00
"delete from __chart_day__hashtag where ___local_users = 0 and ___remote_users = 0;",
2023-04-07 10:56:46 +09:00
);
2023-06-06 08:40:48 +09:00
await queryRunner.query("COMMIT;");
await queryRunner.query("vacuum __chart__hashtag;");
await queryRunner.query("vacuum __chart_day__hashtag;");
await queryRunner.query("COMMIT;");
2023-04-07 10:56:46 +09:00
}
async down(queryRunner) {
await queryRunner.query(
2023-06-06 08:40:48 +09:00
"delete from __chart__hashtag where ___local_users = 0 and ___remote_users = 0;",
2023-04-07 10:56:46 +09:00
);
await queryRunner.query(
2023-06-06 08:40:48 +09:00
"delete from __chart_day__hashtag where ___local_users = 0 and ___remote_users = 0;",
2023-04-07 10:56:46 +09:00
);
}
2023-04-02 04:03:49 +09:00
}