From: dbs Date: Fri, 19 Nov 2010 07:48:12 +0000 (+0000) Subject: Merge upgrade script with tagged version X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=10b035b54f96a8239ae71b3590d833ba4b42bb28;p=Evergreen.git Merge upgrade script with tagged version git-svn-id: svn://svn.open-ils.org/ILS/branches/rel_1_6_1@18802 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/src/sql/Pg/1.6.1.3-1.6.1.4-upgrade-db.sql b/Open-ILS/src/sql/Pg/1.6.1.3-1.6.1.4-upgrade-db.sql index edadd0598b..0f856b3683 100644 --- a/Open-ILS/src/sql/Pg/1.6.1.3-1.6.1.4-upgrade-db.sql +++ b/Open-ILS/src/sql/Pg/1.6.1.3-1.6.1.4-upgrade-db.sql @@ -1,7 +1,20 @@ -BEGIN; +/* + * Copyright (C) 2010 Equinox Software, Inc. + * Mike Rylander + * + * 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; -