fix: rm unique constraint on librepages_sites.repo_url

DESCRIPTION
    A repository might have several deployments. So unique repo_urls
    don't make any sense.
This commit is contained in:
Aravinth Manivannan 2022-11-10 16:11:56 +05:30
parent 8aa736da27
commit 7fb29e0d7a
Signed by: realaravinth
GPG Key ID: AD9F0F08E855ED88
1 changed files with 1 additions and 1 deletions

View File

@ -1,6 +1,6 @@
CREATE TABLE IF NOT EXISTS librepages_sites (
site_secret VARCHAR(32) NOT NULL UNIQUE,
repo_url VARCHAR(3000) NOT NULL UNIQUE,
repo_url VARCHAR(3000) NOT NULL,
branch TEXT NOT NULL,
hostname VARCHAR(3000) NOT NULL UNIQUE,
ID SERIAL PRIMARY KEY NOT NULL,