aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/database_update.php
diff options
context:
space:
mode:
authorDavid M <davidmj@users.sourceforge.net>2007-07-12 17:26:48 +0000
committerDavid M <davidmj@users.sourceforge.net>2007-07-12 17:26:48 +0000
commitc1531d9925585dbbbaa395ba10f16e7575aa1272 (patch)
tree8d45eeadd636361d77aa76bcb5b435ee3762836a /phpBB/install/database_update.php
parent002dd8155708415b3c1c828789feccbfc087a387 (diff)
downloadforums-c1531d9925585dbbbaa395ba10f16e7575aa1272.tar
forums-c1531d9925585dbbbaa395ba10f16e7575aa1272.tar.gz
forums-c1531d9925585dbbbaa395ba10f16e7575aa1272.tar.bz2
forums-c1531d9925585dbbbaa395ba10f16e7575aa1272.tar.xz
forums-c1531d9925585dbbbaa395ba10f16e7575aa1272.zip
#13179
git-svn-id: file:///svn/phpbb/trunk@7876 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/install/database_update.php')
-rw-r--r--phpBB/install/database_update.php33
1 files changed, 30 insertions, 3 deletions
diff --git a/phpBB/install/database_update.php b/phpBB/install/database_update.php
index 8862cf3991..911fc5ce87 100644
--- a/phpBB/install/database_update.php
+++ b/phpBB/install/database_update.php
@@ -334,7 +334,7 @@ $database_update_info = array(
),
// Changes from 3.0.RC2 to the next version
'3.0.RC2' => array(
- // Remove the following keys
+ // Change the following columns
'change_columns' => array(
BANLIST_TABLE => array(
'ban_reason' => array('VCHAR_UNI', ''),
@@ -344,12 +344,39 @@ $database_update_info = array(
),
// Changes from 3.0.RC3 to the next version
'3.0.RC3' => array(
- // Remove the following keys
+ // Change the following columns
'change_columns' => array(
- BANLIST_TABLE => array(
+ BANLIST_TABLE => array(
'ban_reason' => array('VCHAR_UNI', ''),
'ban_give_reason' => array('VCHAR_UNI', ''),
),
+ STYLES_TABLE => array(
+ 'style_id' => array('USINT', 0),
+ 'template_id' => array('USINT', 0),
+ 'theme_id' => array('USINT', 0),
+ 'imageset_id' => array('USINT', 0),
+ ),
+ STYLES_TEMPLATE_TABLE => array(
+ 'template_id' => array('USINT', 0),
+ ),
+ STYLES_TEMPLATE_DATA_TABLE => array(
+ 'template_id' => array('USINT', 0),
+ ),
+ STYLES_THEME_TABLE => array(
+ 'theme_id' => array('USINT', 0),
+ ),
+ STYLES_IMAGESET_TABLE => array(
+ 'imageset_id' => array('USINT', 0),
+ ),
+ STYLES_IMAGESET_DATA_TABLE => array(
+ 'imageset_id' => array('USINT', 0),
+ ),
+ USERS_TABLE => array(
+ 'user_style' => array('USINT', 0),
+ ),
+ FORUMS_TABLE => array(
+ 'forum_style' => array('USINT', 0),
+ ),
),
),
);