[open-ils-commits] r19319 - trunk/Open-ILS/src/sql/Pg/upgrade (miker)

svn at svn.open-ils.org svn at svn.open-ils.org
Fri Jan 28 10:33:17 EST 2011


Author: miker
Date: 2011-01-28 10:33:15 -0500 (Fri, 28 Jan 2011)
New Revision: 19319

Modified:
   trunk/Open-ILS/src/sql/Pg/upgrade/0479.schema.matrix_weights.sql
Log:
need to record the schema version in the upgrade script ... spotted by Thomas Berezansky

Modified: trunk/Open-ILS/src/sql/Pg/upgrade/0479.schema.matrix_weights.sql
===================================================================
--- trunk/Open-ILS/src/sql/Pg/upgrade/0479.schema.matrix_weights.sql	2011-01-28 15:06:07 UTC (rev 19318)
+++ trunk/Open-ILS/src/sql/Pg/upgrade/0479.schema.matrix_weights.sql	2011-01-28 15:33:15 UTC (rev 19319)
@@ -1,6 +1,6 @@
 BEGIN;
 
-INSERT INTO config.upgrade_log (version) VALUES ('0XXX');
+INSERT INTO config.upgrade_log (version) VALUES ('0479');
 
 CREATE OR REPLACE FUNCTION permission.grp_ancestors_distance( INT ) RETURNS TABLE (id INT, distance INT) AS $$
     WITH RECURSIVE grp_ancestors_distance(id, distance) AS (



More information about the open-ils-commits mailing list