fix: allow desktop release version history
Frontend CI / Frontend (push) Successful in 2m12s
Backend CI / Backend (push) Successful in 14m12s

This commit is contained in:
2026-06-10 13:13:06 +08:00
parent b646dfdc11
commit 6a4eaf2827
6 changed files with 202 additions and 31 deletions
@@ -0,0 +1,4 @@
DROP INDEX IF EXISTS ops.uk_desktop_client_releases_target_version;
CREATE UNIQUE INDEX IF NOT EXISTS uk_desktop_client_releases_target
ON ops.desktop_client_releases(platform, arch, channel);
@@ -0,0 +1,4 @@
DROP INDEX IF EXISTS ops.uk_desktop_client_releases_target;
CREATE UNIQUE INDEX IF NOT EXISTS uk_desktop_client_releases_target_version
ON ops.desktop_client_releases(platform, arch, channel, version);