diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2016-12-17 00:01:42 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2016-12-27 17:16:13 +0000 |
commit | e0da7533a4fd098a3e730c3f8bb04d5982ae1a4c (patch) | |
tree | 36a08c5f25f554a69935cc6a4c72c86419f1064d | |
parent | Implements package moves from profile/updates (diff) | |
download | gentoobrowse-api-e0da7533a4fd098a3e730c3f8bb04d5982ae1a4c.tar.bz2 gentoobrowse-api-e0da7533a4fd098a3e730c3f8bb04d5982ae1a4c.tar.xz gentoobrowse-api-e0da7533a4fd098a3e730c3f8bb04d5982ae1a4c.zip |
Fix case of column in primary key
-rw-r--r-- | gentoobrowse-api/db/schema.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gentoobrowse-api/db/schema.sql b/gentoobrowse-api/db/schema.sql index c343835..38c96e2 100644 --- a/gentoobrowse-api/db/schema.sql +++ b/gentoobrowse-api/db/schema.sql @@ -725,7 +725,7 @@ ALTER TABLE ONLY use_local ALTER TABLE use_local CLUSTER ON use_local_pkey; -- Name: updates_pkey; Type: CONSTRAINT; Schema: gentoobrowse; Owner: gentoo; Tablespace: ALTER TABLE ONLY updates - ADD CONSTRAINT updates_pkey PRIMARY KEY (updatePack, catfrom, namefrom); + ADD CONSTRAINT updates_pkey PRIMARY KEY (updatepack, catfrom, namefrom); -- Name: idx_changelog_committime; Type: INDEX; Schema: gentoobrowse; Owner: gentoo; Tablespace: CREATE INDEX idx_changelog_committime ON changelog USING btree (committime); -- Name: idx_changelog_fts; Type: INDEX; Schema: gentoobrowse; Owner: gentoo; Tablespace: |