mirror of
https://github.com/fosrl/pangolin.git
synced 2026-07-17 07:04:36 -05:00
[GH-ISSUE #998] Upgrade to v1.6 fails when using PostgreSQL due to SQLite migration attempt #10478
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @Blacks-Army on GitHub (Jul 1, 2025).
Original GitHub issue: https://github.com/fosrl/pangolin/issues/998
When upgrading Pangolin to version 1.6 using a PostgreSQL database, the container attempts to run migrations against a SQLite database. Since the SQLite database does not exist, the migration fails and the container does not start.
The startup process should check the database type before attempting any migrations, or respect the existing database configuration.
I can provide more details (logs, configuration, etc.) by tomorrow if needed.
@miloschwartz commented on GitHub (Jul 2, 2025):
Ah yeah- typo in the migrations file. Just release a 1.6.2 patch which I think should fix this. Lmk!
@Blacks-Army commented on GitHub (Jul 2, 2025):
It works now thanks