Drop unique constraint for site.name (fixes #4329) (#4342)

* Drop unique constraint for site.name (fixes #4329)

* working down migration
reduce-pool-size^2
Nutomic 4 months ago committed by GitHub
parent 4163e0465e
commit 53147596b4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -0,0 +1,3 @@
ALTER TABLE site
ADD CONSTRAINT site_name_key UNIQUE (name);

@ -0,0 +1,3 @@
ALTER TABLE site
DROP CONSTRAINT site_name_key;
Loading…
Cancel
Save