diff --git a/phpBB/docs/CHANGELOG.html b/phpBB/docs/CHANGELOG.html index 10dc48b801..08c582b896 100644 --- a/phpBB/docs/CHANGELOG.html +++ b/phpBB/docs/CHANGELOG.html @@ -53,6 +53,7 @@
  • Changes since 3.2.0-a2
  • Changes since 3.2.0-a1
  • Changes since 3.1.x
  • +
  • Changes since 3.1.8
  • Changes since 3.1.7-PL1
  • Changes since 3.1.7
  • Changes since 3.1.6
  • @@ -439,6 +440,68 @@
  • [PHPBB3-14265] - Make all tables available in the container
  • +

    Changes since 3.1.8

    + +

    Bug

    + +

    Improvement

    + +

    New Feature

    + +

    Task

    + +

    Changes since 3.1.7-PL1

    Bug

    diff --git a/phpBB/phpbb/db/migration/data/v31x/v319rc1.php b/phpBB/phpbb/db/migration/data/v31x/v319rc1.php new file mode 100644 index 0000000000..9805b45572 --- /dev/null +++ b/phpBB/phpbb/db/migration/data/v31x/v319rc1.php @@ -0,0 +1,36 @@ + +* @license GNU General Public License, version 2 (GPL-2.0) +* +* For full copyright and license information, please see +* the docs/CREDITS.txt file. +* +*/ + +namespace phpbb\db\migration\data\v31x; + +class v319rc1 extends \phpbb\db\migration\migration +{ + public function effectively_installed() + { + return phpbb_version_compare($this->config['version'], '3.1.9-RC1', '>='); + } + + static public function depends_on() + { + return array( + '\phpbb\db\migration\data\v31x\v318', + ); + } + + public function update_data() + { + return array( + array('config.update', array('version', '3.1.9-RC1')), + ); + } +}