aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/schemas/oracle_schema.sql
diff options
context:
space:
mode:
authorDavid M <davidmj@users.sourceforge.net>2006-08-06 19:20:35 +0000
committerDavid M <davidmj@users.sourceforge.net>2006-08-06 19:20:35 +0000
commitcbd65ca2c9d59d5938e16ebdd26e1f4afdfbcd2a (patch)
treedbd387aca660286e30ae239cda21ab0e086ba6ee /phpBB/install/schemas/oracle_schema.sql
parent7c01c5ceb967d891a27341796f404370baad5c62 (diff)
downloadforums-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/oracle_schema.sql')
-rw-r--r--phpBB/install/schemas/oracle_schema.sql2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/install/schemas/oracle_schema.sql b/phpBB/install/schemas/oracle_schema.sql
index 98450307d4..ee9e65662f 100644
--- a/phpBB/install/schemas/oracle_schema.sql
+++ b/phpBB/install/schemas/oracle_schema.sql
@@ -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)