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

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

* working down migration
This commit is contained in:
Nutomic 2024-01-03 18:47:39 +01:00 committed by GitHub
parent 4163e0465e
commit 53147596b4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 0 deletions

View file

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

View file

@ -0,0 +1,3 @@
ALTER TABLE site
DROP CONSTRAINT site_name_key;