SF.net SVN: postfixadmin:[514] trunk/upgrade.php
Brought to you by:
christian_boltz,
gingerdog
|
From: <Gin...@us...> - 2009-01-14 13:13:33
|
Revision: 514
http://postfixadmin.svn.sourceforge.net/postfixadmin/?rev=514&view=rev
Author: GingerDog
Date: 2009-01-14 13:13:25 +0000 (Wed, 14 Jan 2009)
Log Message:
-----------
upgrade.php: see tdiehl on irc.. perhaps this fixes his problem (i hate mysql)
Modified Paths:
--------------
trunk/upgrade.php
Modified: trunk/upgrade.php
===================================================================
--- trunk/upgrade.php 2009-01-13 14:22:00 UTC (rev 513)
+++ trunk/upgrade.php 2009-01-14 13:13:25 UTC (rev 514)
@@ -756,8 +756,6 @@
$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 @@
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`),
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|