mirror of
https://github.com/community-scripts/ProxmoxVE
synced 2026-08-15 10:36:50 +00:00
npm run db:push ran drizzle migrate (CREATE TABLE) on an empty directory before the config backup was restored, creating a fresh DB that got immediately overwritten by the old backup. The old DB was missing new columns like resources.postAuthPath (added in 1.15.4). Replace with drizzle-kit push after config restore, which introspects the existing DB and applies schema diffs (ALTER TABLE) instead. Ref: #12068