diff options
author | David M <davidmj@users.sourceforge.net> | 2006-10-10 01:46:59 +0000 |
---|---|---|
committer | David M <davidmj@users.sourceforge.net> | 2006-10-10 01:46:59 +0000 |
commit | c63392c89e063fc8b8c430e0f6b76e2e9cf42753 (patch) | |
tree | 3b52afd2d115c9b223e2f5d6ffdaa1ec5f6637b9 /phpBB/develop/create_schema_files.php | |
parent | e9df6f354697881f123cc6f188f4c85a54a911d8 (diff) | |
download | forums-c63392c89e063fc8b8c430e0f6b76e2e9cf42753.tar forums-c63392c89e063fc8b8c430e0f6b76e2e9cf42753.tar.gz forums-c63392c89e063fc8b8c430e0f6b76e2e9cf42753.tar.bz2 forums-c63392c89e063fc8b8c430e0f6b76e2e9cf42753.tar.xz forums-c63392c89e063fc8b8c430e0f6b76e2e9cf42753.zip |
new collation for MySQL >= 4.1.3, should be a tad faster
git-svn-id: file:///svn/phpbb/trunk@6473 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/develop/create_schema_files.php')
-rw-r--r-- | phpBB/develop/create_schema_files.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/develop/create_schema_files.php b/phpBB/develop/create_schema_files.php index a490ed4cae..d88613f26f 100644 --- a/phpBB/develop/create_schema_files.php +++ b/phpBB/develop/create_schema_files.php @@ -678,7 +678,7 @@ foreach ($supported_dbms as $dbms) case 'mysql_41': // Remove last line delimiter... $line = substr($line, 0, -2); - $line .= "\n) CHARACTER SET `utf8` COLLATE `utf8_general_ci`;\n\n"; + $line .= "\n) CHARACTER SET `utf8` COLLATE `utf8_bin`;\n\n"; break; // Create Generator |