aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorDavid M <davidmj@users.sourceforge.net>2007-02-25 22:10:36 +0000
committerDavid M <davidmj@users.sourceforge.net>2007-02-25 22:10:36 +0000
commitd9d558ddc10fc2d8ca6173be6a02c50e34c9217f (patch)
treef6dce7656c4f27aeed2b390872301ea6d902531d /phpBB
parentb66e0fcd34d3209ca86059d1737125699a726a7d (diff)
downloadforums-d9d558ddc10fc2d8ca6173be6a02c50e34c9217f.tar
forums-d9d558ddc10fc2d8ca6173be6a02c50e34c9217f.tar.gz
forums-d9d558ddc10fc2d8ca6173be6a02c50e34c9217f.tar.bz2
forums-d9d558ddc10fc2d8ca6173be6a02c50e34c9217f.tar.xz
forums-d9d558ddc10fc2d8ca6173be6a02c50e34c9217f.zip
forgot this :P
git-svn-id: file:///svn/phpbb/trunk@7077 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/install/database_update.php28
1 files changed, 14 insertions, 14 deletions
diff --git a/phpBB/install/database_update.php b/phpBB/install/database_update.php
index bef57ad5ec..1427ab69fe 100644
--- a/phpBB/install/database_update.php
+++ b/phpBB/install/database_update.php
@@ -125,22 +125,22 @@ $dbms_type_map = array(
'TINT:' => 'tinyint(%d)',
'USINT' => 'smallint(4) UNSIGNED',
'BOOL' => 'tinyint(1) UNSIGNED',
- 'VCHAR' => 'varchar(255)',
- 'VCHAR:' => 'varchar(%d)',
- 'CHAR:' => 'char(%d)',
- 'XSTEXT' => 'text',
- 'XSTEXT_UNI'=> 'text',
- 'STEXT' => 'text',
- 'STEXT_UNI' => 'text',
- 'TEXT' => 'text',
- 'TEXT_UNI' => 'text',
- 'MTEXT' => 'mediumtext',
- 'MTEXT_UNI' => 'mediumtext',
+ 'VCHAR' => 'varbinary(255)',
+ 'VCHAR:' => 'varbinary(%d)',
+ 'CHAR:' => 'binary(%d)',
+ 'XSTEXT' => 'blob',
+ 'XSTEXT_UNI'=> 'blob',
+ 'STEXT' => 'blob',
+ 'STEXT_UNI' => 'blob',
+ 'TEXT' => 'blob',
+ 'TEXT_UNI' => 'blob',
+ 'MTEXT' => 'mediumblob',
+ 'MTEXT_UNI' => 'mediumblob',
'TIMESTAMP' => 'int(11) UNSIGNED',
'DECIMAL' => 'decimal(5,2)',
- 'VCHAR_UNI' => 'text',
- 'VCHAR_UNI:'=> array('varchar(%d)', 'limit' => array('mult', 3, 255, 'text')),
- 'VCHAR_CI' => 'text',
+ 'VCHAR_UNI' => 'blob',
+ 'VCHAR_UNI:'=> array('varbinary(%d)', 'limit' => array('mult', 3, 255, 'blob')),
+ 'VCHAR_CI' => 'blob',
'VARBINARY' => 'varbinary(255)',
),