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: datastore tables are now correctly prefixed cluster_agent_ in the shared runos database. The GORM models' explicit TableName() returned unprefixed
names, which overrides the NamingStrategy table prefix, so migrations created
bare tables (e.g. buildkit_jobs). TableName() now returns the full prefixed
name (cluster_agent_buildkit_jobs, ...), with a regression test over the
migrated schema. No data migration: the agent re-provisions the prefixed tables
on the system Postgres; any bare tables from v1.1.0 are orphaned and can be
dropped.