From: scottmk Date: Tue, 22 Sep 2009 17:38:26 +0000 (+0000) Subject: Renaming an upgrade script to avoid a numbering collision X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=63ba9735f0f04e1d682fb283561dd9907f329a1e;p=contrib%2FConifer.git Renaming an upgrade script to avoid a numbering collision D upgrade/0011.schema.circ-checkin-ws-and-scan-time.sql A upgrade/0013.schema.circ-checkin-ws-and-scan-time.sql git-svn-id: svn://svn.open-ils.org/ILS/trunk@14090 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/src/sql/Pg/upgrade/0011.schema.circ-checkin-ws-and-scan-time.sql b/Open-ILS/src/sql/Pg/upgrade/0011.schema.circ-checkin-ws-and-scan-time.sql deleted file mode 100644 index 9f74838ae8..0000000000 --- a/Open-ILS/src/sql/Pg/upgrade/0011.schema.circ-checkin-ws-and-scan-time.sql +++ /dev/null @@ -1,15 +0,0 @@ -BEGIN; - -INSERT INTO config.upgrade_log (version) VALUES ('0011.schema.circ-checkin-ws-and-scan-time.sql'); - -ALTER TABLE action.circulation -ADD COLUMN checkin_workstation INT - REFERENCES actor.workstation(id) - ON DELETE SET NULL - DEFERRABLE INITIALLY DEFERRED; - -ALTER TABLE action.circulation -ADD COLUMN checkin_scan_time TIMESTAMPTZ; - -COMMIT; - diff --git a/Open-ILS/src/sql/Pg/upgrade/0013.schema.circ-checkin-ws-and-scan-time.sql b/Open-ILS/src/sql/Pg/upgrade/0013.schema.circ-checkin-ws-and-scan-time.sql new file mode 100644 index 0000000000..6539fe1e05 --- /dev/null +++ b/Open-ILS/src/sql/Pg/upgrade/0013.schema.circ-checkin-ws-and-scan-time.sql @@ -0,0 +1,15 @@ +BEGIN; + +INSERT INTO config.upgrade_log (version) VALUES ('0013.schema.circ-checkin-ws-and-scan-time.sql'); + +ALTER TABLE action.circulation +ADD COLUMN checkin_workstation INT + REFERENCES actor.workstation(id) + ON DELETE SET NULL + DEFERRABLE INITIALLY DEFERRED; + +ALTER TABLE action.circulation +ADD COLUMN checkin_scan_time TIMESTAMPTZ; + +COMMIT; +