You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: add migration 006 detection to pre-Alembic stamping logic (#63)
Databases created by create_all() (SQLite) include all v6.2.0 schema
(forum_topics table, is_forum column, etc.) but no alembic_version.
On restart, the stamping logic only detected up to 005, so it stamped
at 005 and tried to run migration 006 which failed with "duplicate
column name: is_forum".
Fix: Add forum_topics table detection for migration 006 in both the
SQLite and PostgreSQL stamping paths. Bump to v6.2.2.
0 commit comments