Call _run_config_migrations from database initialization

parent b2fd5908
......@@ -4221,7 +4221,8 @@ def DatabaseManager__run_config_migrations(self, cursor, auto_increment, timesta
except Exception as e:
logger.warning(f"Migration check for {table_name} table: {e}")
# Migration code moved to _initialize_database method
# Run all configuration database migrations
self._run_config_migrations(cursor, auto_increment, timestamp_default, boolean_type)
conn.commit()
logger.info("✅ All database migrations completed")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment