[open-ils-commits] r14090 - trunk/Open-ILS/src/sql/Pg/upgrade (scottmk)
svn at svn.open-ils.org
svn at svn.open-ils.org
Tue Sep 22 13:38:30 EDT 2009
Author: scottmk
Date: 2009-09-22 13:38:26 -0400 (Tue, 22 Sep 2009)
New Revision: 14090
Added:
trunk/Open-ILS/src/sql/Pg/upgrade/0013.schema.circ-checkin-ws-and-scan-time.sql
Removed:
trunk/Open-ILS/src/sql/Pg/upgrade/0011.schema.circ-checkin-ws-and-scan-time.sql
Log:
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
Deleted: trunk/Open-ILS/src/sql/Pg/upgrade/0011.schema.circ-checkin-ws-and-scan-time.sql
===================================================================
--- trunk/Open-ILS/src/sql/Pg/upgrade/0011.schema.circ-checkin-ws-and-scan-time.sql 2009-09-22 17:37:09 UTC (rev 14089)
+++ trunk/Open-ILS/src/sql/Pg/upgrade/0011.schema.circ-checkin-ws-and-scan-time.sql 2009-09-22 17:38:26 UTC (rev 14090)
@@ -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;
-
Copied: trunk/Open-ILS/src/sql/Pg/upgrade/0013.schema.circ-checkin-ws-and-scan-time.sql (from rev 14088, trunk/Open-ILS/src/sql/Pg/upgrade/0011.schema.circ-checkin-ws-and-scan-time.sql)
===================================================================
--- trunk/Open-ILS/src/sql/Pg/upgrade/0013.schema.circ-checkin-ws-and-scan-time.sql (rev 0)
+++ trunk/Open-ILS/src/sql/Pg/upgrade/0013.schema.circ-checkin-ws-and-scan-time.sql 2009-09-22 17:38:26 UTC (rev 14090)
@@ -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;
+
More information about the open-ils-commits
mailing list