diff options
author | jakefeasel <jfeasel@gmail.com> | 2015-03-07 19:17:39 -0800 |
---|---|---|
committer | jakefeasel <jfeasel@gmail.com> | 2015-03-07 19:17:39 -0800 |
commit | 1784dc74f92a0acbc334c96c91427ca6e966c459 (patch) | |
tree | 4dc12a81ea37577790f296e9e9d1a4c8d67f052e | |
parent | 48f238675e32efbd2a655d3ae7500320765d4684 (diff) | |
download | sqlfiddle2-1784dc74f92a0acbc334c96c91427ca6e966c459.zip sqlfiddle2-1784dc74f92a0acbc334c96c91427ca6e966c459.tar.gz sqlfiddle2-1784dc74f92a0acbc334c96c91427ca6e966c459.tar.bz2 |
Removing constraint for current_host_id, as it is presently unused
-rw-r--r-- | src/main/resources/db/sqlfiddle/schema.sql | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/resources/db/sqlfiddle/schema.sql b/src/main/resources/db/sqlfiddle/schema.sql index a12bf1c..4a80e26 100644 --- a/src/main/resources/db/sqlfiddle/schema.sql +++ b/src/main/resources/db/sqlfiddle/schema.sql @@ -450,8 +450,8 @@ ALTER TABLE ONLY schema_defs -- Name: host_ref; Type: FK CONSTRAINT; Schema: public; Owner: postgres -- -ALTER TABLE ONLY schema_defs - ADD CONSTRAINT host_ref FOREIGN KEY (current_host_id) REFERENCES hosts(id); +--ALTER TABLE ONLY schema_defs +-- ADD CONSTRAINT host_ref FOREIGN KEY (current_host_id) REFERENCES hosts(id); -- |