From 84cd5ddfcd3e88c976e392ef07f5616f240d5995 Mon Sep 17 00:00:00 2001 From: David Goodwin Date: Wed, 14 Jan 2009 13:13:25 +0000 Subject: [PATCH] upgrade.php: see tdiehl on irc.. perhaps this fixes his problem (i hate mysql) git-svn-id: https://svn.code.sf.net/p/postfixadmin/code/trunk@514 a1433add-5e2c-0410-b055-b7f2511e0802 --- upgrade.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/upgrade.php b/upgrade.php index b0914563..1bfe519e 100644 --- a/upgrade.php +++ b/upgrade.php @@ -756,8 +756,6 @@ function upgrade_81_mysql() { # MySQL only $result = db_query_parsed($sql, TRUE); } - # creation of vacation_notification table moved to upgrade_318_mysql because - # the query in this function was broken (key length vs. utf8 charset) } /** @@ -793,7 +791,7 @@ function upgrade_318_mysql() { db_query_parsed( " CREATE TABLE {IF_NOT_EXISTS} $table_vacation_notification ( - on_vacation varchar(255) NOT NULL, + on_vacation varchar(255) {LATIN1} NOT NULL, notified varchar(255) NOT NULL, notified_at timestamp NOT NULL default CURRENT_TIMESTAMP, PRIMARY KEY on_vacation (`on_vacation`, `notified`),