Update the sql scripts to add a primary key to the OCSSessionFolder table.

Monotone-Parent: e13dda2a639bb68b9e67d7b4dd75235d9d98ef1b
Monotone-Revision: ecc0c907192778ee08a07fb020aa037de83d7bed

Monotone-Author: jraby@inverse.ca
Monotone-Date: 2012-01-20T18:43:29
maint-2.0.2
Jean Raby 2012-01-20 18:43:29 +00:00
parent 29ce01947a
commit f16cefad31
2 changed files with 47 additions and 0 deletions

View File

@ -0,0 +1,36 @@
#!/bin/bash
# converting c_content to text is not needed on mysql as it is already big enough (mediumtext)
# this script only works with MySQL
defaultusername=$USER
defaulthostname=localhost
defaultdatabase=$USER
read -p "Username ($defaultusername): " username
read -p "Hostname ($defaulthostname): " hostname
read -p "Database ($defaultdatabase): " database
if [ -z "$username" ]
then
username=$defaultusername
fi
if [ -z "$hostname" ]
then
hostname=$defaulthostname
fi
if [ -z "$database" ]
then
database=$defaultdatabase
fi
SESSIONTBL=$(su - sogo -c "defaults read sogod OCSSessionsFolderURL" | awk -F/ '{print $NF}')
if [ -z "$SESSIONTBL" ]; then
echo "Failed to obtain session table name" >&2
exit 1
fi
echo "Fix primary key for the sogo_sessions table"
mysql -p -s -u $username -h $hostname $database -e "ALTER TABLE $SESSIONTBL ADD PRIMARY KEY (c_id);"

View File

@ -34,6 +34,7 @@ function convVCtoText() {
IFS="$oldIFS"
}
echo "Step 1 - Converting c_content from VARCHAR to TEXT in table sogo_folder_info" >&2
tables=`psql -t -U $username -h $hostname $database -c "select split_part(c_location, '/', 5) from $indextable;"`
for table in $tables;
@ -42,3 +43,13 @@ do
done
echo "$sqlscript" | psql -q -e -U $username -h $hostname $database
echo "Step 2 - Fix primary key for the sogo_sessions table" >&2
SESSIONTBL=$(su - sogo -c "defaults read sogod OCSSessionsFolderURL" | awk -F/ '{print $NF}')
if [ -z "$SESSIONTBL" ]; then
echo "Failed to obtain session table name" >&2
exit 1
fi
psql -e -U $username -h $hostname $database -c "ALTER TABLE $SESSIONTBL ADD PRIMARY KEY (c_id);"