aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/develop/create_schema_files.php
diff options
context:
space:
mode:
authorDavid M <davidmj@users.sourceforge.net>2007-07-31 20:27:39 +0000
committerDavid M <davidmj@users.sourceforge.net>2007-07-31 20:27:39 +0000
commit30f81737096afe8c5910d6f494654d08950f4fcc (patch)
treec03b8ad55f914e68065d1cbe8ec1426f2f5cf252 /phpBB/develop/create_schema_files.php
parentcef5720962ae88bae37eb2edc942b70400b2ff37 (diff)
downloadforums-30f81737096afe8c5910d6f494654d08950f4fcc.tar
forums-30f81737096afe8c5910d6f494654d08950f4fcc.tar.gz
forums-30f81737096afe8c5910d6f494654d08950f4fcc.tar.bz2
forums-30f81737096afe8c5910d6f494654d08950f4fcc.tar.xz
forums-30f81737096afe8c5910d6f494654d08950f4fcc.zip
- found a bug, it caused MSSQL not being able to use templates stored in the DB since the first beta. removing pointless auto_increment
git-svn-id: file:///svn/phpbb/trunk@7990 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/develop/create_schema_files.php')
-rw-r--r--phpBB/develop/create_schema_files.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/develop/create_schema_files.php b/phpBB/develop/create_schema_files.php
index 1675fc0899..19334f5a2e 100644
--- a/phpBB/develop/create_schema_files.php
+++ b/phpBB/develop/create_schema_files.php
@@ -1590,7 +1590,7 @@ function get_schema_struct()
$schema_data['phpbb_styles_template_data'] = array(
'COLUMNS' => array(
- 'template_id' => array('USINT', NULL, 'auto_increment'),
+ 'template_id' => array('USINT', 0),
'template_filename' => array('VCHAR:100', ''),
'template_included' => array('TEXT', ''),
'template_mtime' => array('TIMESTAMP', 0),