fix upgrade bug where 0.9.4 updates were not being applied

This commit is contained in:
Dave Horton
2025-09-07 11:00:41 -04:00
parent 0ba69e872b
commit 743c4ba271
+1
View File
@@ -267,6 +267,7 @@ const doIt = async() => {
if (val < 9000) upgrades.push(...sql['9000']);
if (val < 9002) upgrades.push(...sql['9002']);
if (val < 9003) upgrades.push(...sql['9003']);
if (val < 9004) upgrades.push(...sql['9004']);
// perform all upgrades
logger.info({upgrades}, 'applying schema upgrades..');