LP#1006466 - remove testing upgrade script
authorChris Sharp <csharp@georgialibraries.org>
Thu, 1 Aug 2019 11:25:37 +0000 (07:25 -0400)
committerChris Sharp <csharp@georgialibraries.org>
Thu, 1 Aug 2019 11:25:37 +0000 (07:25 -0400)
Signed-off-by: Chris Sharp <csharp@georgialibraries.org>

Open-ILS/src/sql/Pg/upgrade/xxxx.schema.action_hold_request_fkey_to_hold_type.sql [deleted file]

diff --git a/Open-ILS/src/sql/Pg/upgrade/xxxx.schema.action_hold_request_fkey_to_hold_type.sql b/Open-ILS/src/sql/Pg/upgrade/xxxx.schema.action_hold_request_fkey_to_hold_type.sql
deleted file mode 100644 (file)
index 8362f62..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-CREATE TABLE config.hold_type (
-    id          SERIAL,
-    hold_type   TEXT UNIQUE,
-    description TEXT
-);
-
-INSERT INTO config.hold_type (hold_type,description) VALUES
-    ('C','Copy Hold'),
-    ('V','Volume Hold'),
-    ('T','Title Hold'),
-    ('M','Metarecord Hold'),
-    ('R','Recall Hold'),
-    ('F','Force Hold'),
-    ('I','Issuance Hold'),
-    ('P','Part Hold')
-;
-
-ALTER TABLE action.hold_request ADD CONSTRAINT hold_request_hold_type_fkey FOREIGN KEY (hold_type) REFERENCES config.hold_type(hold_type) DEFERRABLE INITIALLY DEFERRED;
-