diff options
author | David M <davidmj@users.sourceforge.net> | 2006-08-06 19:20:35 +0000 |
---|---|---|
committer | David M <davidmj@users.sourceforge.net> | 2006-08-06 19:20:35 +0000 |
commit | cbd65ca2c9d59d5938e16ebdd26e1f4afdfbcd2a (patch) | |
tree | dbd387aca660286e30ae239cda21ab0e086ba6ee /phpBB/install/schemas/mysql_schema.sql | |
parent | 7c01c5ceb967d891a27341796f404370baad5c62 (diff) | |
download | forums-cbd65ca2c9d59d5938e16ebdd26e1f4afdfbcd2a.tar forums-cbd65ca2c9d59d5938e16ebdd26e1f4afdfbcd2a.tar.gz forums-cbd65ca2c9d59d5938e16ebdd26e1f4afdfbcd2a.tar.bz2 forums-cbd65ca2c9d59d5938e16ebdd26e1f4afdfbcd2a.tar.xz forums-cbd65ca2c9d59d5938e16ebdd26e1f4afdfbcd2a.zip |
Databases that gain cool points:
MSSQL
Firebird
SQLite
Oracle
Databases that lose cool points:
MySQL
PostgreSQL
MySQL recently-ish gained character set features. PostgreSQL has zero, none; one must create the database as unicode. The only way I can think of getting PostgreSQL to do what I want it to do would require something rather crazy...
git-svn-id: file:///svn/phpbb/trunk@6246 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install/schemas/mysql_schema.sql')
-rw-r--r-- | phpBB/install/schemas/mysql_schema.sql | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/install/schemas/mysql_schema.sql b/phpBB/install/schemas/mysql_schema.sql index 8e6115120b..4c30f16adb 100644 --- a/phpBB/install/schemas/mysql_schema.sql +++ b/phpBB/install/schemas/mysql_schema.sql @@ -627,7 +627,7 @@ CREATE TABLE phpbb_search_results ( # Table: 'phpbb_search_wordlist' CREATE TABLE phpbb_search_wordlist ( word_id mediumint(8) UNSIGNED NOT NULL auto_increment, - word_text varchar(252) BINARY DEFAULT '' NOT NULL, + word_text varchar(252) /*!40101 CHARACTER SET utf8 */ BINARY DEFAULT '' NOT NULL, word_common tinyint(1) UNSIGNED DEFAULT '0' NOT NULL, PRIMARY KEY (word_id), UNIQUE wrd_txt (word_text) |