diff options
author | INOPIAE <inopiae@cacert.org> | 2013-05-01 13:31:33 +0200 |
---|---|---|
committer | INOPIAE <inopiae@cacert.org> | 2013-05-01 13:31:33 +0200 |
commit | e0586db3dabd6b0dd2779fa367753c41204930fc (patch) | |
tree | f4fe83a2173fd69bc93d471d3bc5c21e8cbf66cf | |
parent | e0cce72862d0f2b3ec8e690e17032b44d60f2d56 (diff) | |
download | cacert-devel-e0586db3dabd6b0dd2779fa367753c41204930fc.tar.gz cacert-devel-e0586db3dabd6b0dd2779fa367753c41204930fc.tar.xz cacert-devel-e0586db3dabd6b0dd2779fa367753c41204930fc.zip |
bug 1172: deleted double comments
-rw-r--r-- | scripts/db_migrations/version5.sh | 64 |
1 files changed, 1 insertions, 63 deletions
diff --git a/scripts/db_migrations/version5.sh b/scripts/db_migrations/version5.sh index c5421e4..b511bee 100644 --- a/scripts/db_migrations/version5.sh +++ b/scripts/db_migrations/version5.sh @@ -19,69 +19,7 @@ # script to do database migrations -# This particular version migrates from the preversioned state to version 1 -# If you want to reuse it for further migrations you probably should pay special -# attention because you have to adjust it a bit - -set -e # script fails if any command fails - -STDIN=0 -STDOUT=1 -STDERR=2 - -if [ "$1" = "--help" ]; then - cat >&$STDERR <<- USAGE - Usage: $0 [MYSQL_OPTIONS] - You have to specify all options needed by "mysql" as if you had started - the MySQL command line client directly (including the name of the - database to operate on). The MySQL user used has to have enough - privileges to do all necessary operations (among others CREATE, ALTER, - DROP, UPDATE, INSERT, DELETE). - You might need to enter the mysql password multiple times if you - specify the -p option. - USAGE - exit 1 -fi - -mysql_opt=" --batch --skip-column-names $@" - -schema_version=$( mysql $mysql_opt <<- 'SQL' - - SELECT MAX(`version`) FROM `schema_version`; -SQL -) -if [ $schema_version != 4 ]; then - cat >&$STDERR <<- ERROR - Error: database schema is not in the right version to do the migration! - Expected version: 4 (i.e. the version before there was versioning) - ERROR - exit 2 -fi - -mysql $mysql_opt <<- 'SQL' - -#!/bin/sh -# LibreSSL - CAcert web application -# Copyright (C) 2004-2011 CAcert Inc. -# -# 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; version 2 of the License. -# -# 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. -# -# You should have received a copy of the GNU General Public License -# along with this program; if not, write to the Free Software -# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - - - -# script to do database migrations - -# This particular version migrates from the preversioned state to version 1 +# This particular version migrates from the preversioned state to version 5 # If you want to reuse it for further migrations you probably should pay special # attention because you have to adjust it a bit |