mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-08 17:56:52 +02:00
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
This commit is contained in:
@@ -1215,7 +1215,7 @@ CREATE TABLE phpbb_search_results (
|
||||
*/
|
||||
CREATE TABLE phpbb_search_wordlist (
|
||||
word_id number(8) NOT NULL,
|
||||
word_text varchar2(252) DEFAULT '' ,
|
||||
word_text nvarchar2(252) DEFAULT '' ,
|
||||
word_common number(1) DEFAULT '0' NOT NULL,
|
||||
CONSTRAINT pk_phpbb_search_wordlist PRIMARY KEY (word_id),
|
||||
CONSTRAINT u_phpbb_wrd_txt UNIQUE (word_text)
|
||||
|
Reference in New Issue
Block a user