aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/database_update.php
diff options
context:
space:
mode:
authorOleg Pudeyev <oleg@bsdpower.com>2011-02-23 22:02:39 -0500
committerOleg Pudeyev <oleg@bsdpower.com>2011-02-23 22:02:39 -0500
commitdf92b7bdf2e91f49461852eb962386009b64d2df (patch)
tree39291f93861d15d6f818223594b05c658510a9ca /phpBB/install/database_update.php
parent510248da2844df22af1cd807e13b46c0c8b68290 (diff)
parent5dee60e54e99913e1804d2c74f94b6e9ada390a7 (diff)
downloadforums-df92b7bdf2e91f49461852eb962386009b64d2df.tar
forums-df92b7bdf2e91f49461852eb962386009b64d2df.tar.gz
forums-df92b7bdf2e91f49461852eb962386009b64d2df.tar.bz2
forums-df92b7bdf2e91f49461852eb962386009b64d2df.tar.xz
forums-df92b7bdf2e91f49461852eb962386009b64d2df.zip
Merge branch 'ticket/erikfrerejean/7778' into develop-olympus
* ticket/erikfrerejean/7778: [ticket/7778] Update all the schema files [ticket/7778] Add the column change to `mysql_upgrader.php` [ticket/7778] BBCode single limit
Diffstat (limited to 'phpBB/install/database_update.php')
-rw-r--r--phpBB/install/database_update.php11
1 files changed, 9 insertions, 2 deletions
diff --git a/phpBB/install/database_update.php b/phpBB/install/database_update.php
index 4d3d51923b..d74d1dab68 100644
--- a/phpBB/install/database_update.php
+++ b/phpBB/install/database_update.php
@@ -916,8 +916,15 @@ function database_update_info()
'3.0.7-PL1' => array(),
// No changes from 3.0.8-RC1 to 3.0.8
'3.0.8-RC1' => array(),
- // No changes from 3.0.8 to 3.0.9-RC1
- '3.0.8' => array(),
+
+ // Changes from 3.0.8 to 3.0.9-RC1
+ '3.0.8' => array(
+ 'change_columns' => array(
+ BBCODES_TABLE => array(
+ 'bbcode_id' => array('USINT', 0),
+ ),
+ ),
+ ),
);
}