Merge upgrade script with tagged version
authordbs <dbs@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Fri, 19 Nov 2010 07:48:12 +0000 (07:48 +0000)
committerdbs <dbs@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Fri, 19 Nov 2010 07:48:12 +0000 (07:48 +0000)
git-svn-id: svn://svn.open-ils.org/ILS/branches/rel_1_6_1@18802 dcc99617-32d9-48b4-a31d-7c20da2025e4

Open-ILS/src/sql/Pg/1.6.1.3-1.6.1.4-upgrade-db.sql

index edadd05..0f856b3 100644 (file)
@@ -1,7 +1,20 @@
-BEGIN;
+/*
+ * Copyright (C) 2010  Equinox Software, Inc.
+ * Mike Rylander <miker@esilibrary.com>
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ */
+
+INSERT INTO config.upgrade_log(version) VALUES ('1.6.1.4');
 
 -- Create seed data for the asset.uri table
 INSERT INTO asset.uri (id, href, active) VALUES (-1, 'http://example.com/fake', FALSE);
-
-COMMIT;
-