aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/db
diff options
context:
space:
mode:
authorhjpotter92 <hjpotter92@iitkgp.ac.in>2014-03-02 23:23:44 +0530
committerhjpotter92 <hjpotter92@iitkgp.ac.in>2014-03-18 13:32:44 +0530
commit7696f39ac3ecb803468f230129a76dac59f2972b (patch)
tree3330b616dc84a91069f73ec0721940b43b1fbe07 /phpBB/phpbb/db
parentf6e45ed24420e719a969ffd301cf019ba0aa912a (diff)
downloadforums-7696f39ac3ecb803468f230129a76dac59f2972b.tar
forums-7696f39ac3ecb803468f230129a76dac59f2972b.tar.gz
forums-7696f39ac3ecb803468f230129a76dac59f2972b.tar.bz2
forums-7696f39ac3ecb803468f230129a76dac59f2972b.tar.xz
forums-7696f39ac3ecb803468f230129a76dac59f2972b.zip
[ticket/11875] Recreate schemas for install
PHPBB3-11875
Diffstat (limited to 'phpBB/phpbb/db')
-rw-r--r--phpBB/phpbb/db/tools.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/phpbb/db/tools.php b/phpBB/phpbb/db/tools.php
index 7f143873b1..18e30d309a 100644
--- a/phpBB/phpbb/db/tools.php
+++ b/phpBB/phpbb/db/tools.php
@@ -230,12 +230,12 @@ class tools
'sqlite' => array(
'INT:' => 'int(%d)',
'BINT' => 'bigint(20)',
- 'ULINT' => 'INTEGER UNSIGNED', // 'int(10) UNSIGNED
+ 'ULINT' => 'INTEGER UNSIGNED', // 'int(10) UNSIGNED',
'UINT' => 'INTEGER UNSIGNED', // 'mediumint(8) UNSIGNED',
'UINT:' => 'INTEGER UNSIGNED', // 'int(%d) UNSIGNED',
'TINT:' => 'tinyint(%d)',
- 'USINT' => 'INTEGER UNSIGNED', //'mediumint(4) UNSIGNED',
- 'BOOL' => 'INTEGER UNSIGNED', //'tinyint(1) UNSIGNED',
+ 'USINT' => 'INTEGER UNSIGNED', // 'mediumint(4) UNSIGNED',
+ 'BOOL' => 'INTEGER UNSIGNED', // 'tinyint(1) UNSIGNED',
'VCHAR' => 'varchar(255)',
'VCHAR:' => 'varchar(%d)',
'CHAR:' => 'char(%d)',
@@ -247,7 +247,7 @@ class tools
'STEXT_UNI' => 'text(65535)',
'TEXT_UNI' => 'text(65535)',
'MTEXT_UNI' => 'mediumtext(16777215)',
- 'TIMESTAMP' => 'INTEGER UNSIGNED', //'int(11) UNSIGNED',
+ 'TIMESTAMP' => 'INTEGER UNSIGNED', // 'int(11) UNSIGNED',
'DECIMAL' => 'decimal(5,2)',
'DECIMAL:' => 'decimal(%d,2)',
'PDECIMAL' => 'decimal(6,3)',