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
Use a releases.tags array column with a GIST intersection constraint: ALTER TABLE releases ADD CONSTRAINT release_unique_tags_constraint EXCLUDE USING GIST (tags WITH &&). But iirc, GIST has perf gotchas.
Use a release_tags table with a unique index on (key, account_id, product_id[, release_package_id]), similar to what we currently have with releases.tag. Probably the simplest solution.
E.g. with Docker, you may want to tag an image release as
latest
,1
, and1.2
, with a version of1.2.3
.Right now, you can tag
latest
and that's it, which isn't conventional.The text was updated successfully, but these errors were encountered: