diff options
| author | Andreas Fischer <bantu@phpbb.com> | 2012-07-23 15:48:40 +0200 |
|---|---|---|
| committer | Andreas Fischer <bantu@phpbb.com> | 2012-07-23 15:48:40 +0200 |
| commit | 3da72e98644a7b2bad86c9013e2250304611ce9b (patch) | |
| tree | c849877f58b72802c42a4125d9fbe846c0e51f22 /phpBB/install/database_update.php | |
| parent | 55aaa596d72c8eef54f394da22f43bdf731d9333 (diff) | |
| parent | 19237f561396c9a2f096c9d01acc857fe92b89ba (diff) | |
| download | forums-3da72e98644a7b2bad86c9013e2250304611ce9b.tar forums-3da72e98644a7b2bad86c9013e2250304611ce9b.tar.gz forums-3da72e98644a7b2bad86c9013e2250304611ce9b.tar.bz2 forums-3da72e98644a7b2bad86c9013e2250304611ce9b.tar.xz forums-3da72e98644a7b2bad86c9013e2250304611ce9b.zip | |
Merge remote-tracking branch 'naderman/ticket/10965' into prep-release-3.0.11
* naderman/ticket/10965:
[ticket/10965] Database update was referring to 3.0.5 instead of 3.0.11-RC1
[ticket/10965] Introduce a new profile field option to display no value
Diffstat (limited to 'phpBB/install/database_update.php')
| -rw-r--r-- | phpBB/install/database_update.php | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/phpBB/install/database_update.php b/phpBB/install/database_update.php index c1fe144c62..c51286f25f 100644 --- a/phpBB/install/database_update.php +++ b/phpBB/install/database_update.php @@ -995,6 +995,14 @@ function database_update_info() '3.0.10-RC3' => array(), // No changes from 3.0.10 to 3.0.11-RC1 '3.0.10' => array(), + // Changes from 3.0.11-RC1 to 3.0.11-RC2 + '3.0.11-RC1' => array( + 'add_columns' => array( + PROFILE_FIELDS_TABLE => array( + 'field_show_novalue' => array('BOOL', 0), + ), + ), + ), /** @todo DROP LOGIN_ATTEMPT_TABLE.attempt_id in 3.0.12-RC1 */ ); |
