Preparing

This commit is contained in:
Louis Lam
2024-09-01 17:19:18 +08:00
parent c567e8eb8e
commit 2dfa6886b4
2 changed files with 20 additions and 0 deletions

View File

@@ -711,6 +711,15 @@ class Database {
}
}
/**
* TODO: Migrate the old data in the heartbeat table to the new format (stat_daily, stat_hourly, stat_minutely)
* It should be run once while upgrading V1 to V2
* @returns {Promise<void>}
*/
static async migrateAggregateTable() {
}
}
module.exports = Database;