1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 14:00:31 +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:
David M
2006-08-06 19:20:35 +00:00
parent 7c01c5ceb9
commit cbd65ca2c9
4 changed files with 4 additions and 4 deletions

View File

@@ -929,7 +929,7 @@ ALTER TABLE phpbb_search_results ADD PRIMARY KEY (search_key);;
# Table: 'phpbb_search_wordlist'
CREATE TABLE phpbb_search_wordlist (
word_id INTEGER NOT NULL,
word_text VARCHAR(252) DEFAULT '' NOT NULL,
word_text VARCHAR(252) CHARACTER SET UNICODE_FSS DEFAULT '' NOT NULL,
word_common INTEGER DEFAULT 0 NOT NULL
);;