SF.net SVN: postfixadmin: [202] trunk/upgrade.php
Brought to you by:
christian_boltz,
gingerdog
From: <chr...@us...> - 2007-11-05 23:23:23
|
Revision: 202 http://postfixadmin.svn.sourceforge.net/postfixadmin/?rev=202&view=rev Author: christian_boltz Date: 2007-11-05 15:23:19 -0800 (Mon, 05 Nov 2007) Log Message: ----------- - rename placeholder {UTF_8} to the more obvious {UTF-8} This also fixes my last commit ;-) Modified Paths: -------------- trunk/upgrade.php Modified: trunk/upgrade.php =================================================================== --- trunk/upgrade.php 2007-11-05 22:07:02 UTC (rev 201) +++ trunk/upgrade.php 2007-11-05 23:23:19 UTC (rev 202) @@ -93,7 +93,7 @@ '{UNSIGNED}' => 'unsigned' , '{FULLTEXT}' => 'FULLTEXT', '{BOOLEAN}' => 'tinyint(1) NOT NULL', - '{UTF_8}' => '/*!40100 CHARACTER SET utf8 COLLATE utf8_unicode_ci */', + '{UTF-8}' => '/*!40100 CHARACTER SET utf8 COLLATE utf8_unicode_ci */', '{LATIN1}' => '/*!40100 CHARACTER SET latin1 COLLATE latin1_swedish_ci */', '{IF_NOT_EXISTS}' => 'IF NOT EXISTS', '{RENAME_COLUMN}' => 'CHANGE COLUMN', @@ -107,7 +107,7 @@ '{UNSIGNED}' => '', '{FULLTEXT}' => '', '{BOOLEAN}' => 'BOOLEAN NOT NULL', - '{UTF_8}' => '', # TODO: UTF_8 is simply ignored. + '{UTF-8}' => '', # TODO: UTF-8 is simply ignored. '{LATIN1}' => '', # TODO: same for latin1 '{IF_NOT_EXISTS}' => 'IF NOT EXISTS', # TODO: does this work with PgSQL? '{RENAME_COLUMN}' => 'CHANGE COLUMN', # TODO: probably wrong This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |