0
0
mirror of https://github.com/postfixadmin/postfixadmin.git synced 2024-09-20 03:36:20 +02:00

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
This commit is contained in:
David Goodwin 2009-01-14 13:13:25 +00:00
parent b2ba25693e
commit 84cd5ddfcd

View File

@ -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`),