diff options
| author | Joas Schilling <nickvergessen@gmx.de> | 2015-08-23 18:27:30 +0200 |
|---|---|---|
| committer | Joas Schilling <nickvergessen@gmx.de> | 2015-08-23 18:27:30 +0200 |
| commit | 05851e2b4b1fe0ad44e3afc7e91f0e8716d76e42 (patch) | |
| tree | 4de24c52bc5c7aad8b90ea67f3d85374d01a6aa0 /phpBB/phpbb/db/migration | |
| parent | eb53e51e3692589c9152f03ab3b4fb85b74cdfa5 (diff) | |
| parent | 335452b1c162b74905b8459feb2f4d4ec9e31444 (diff) | |
| download | forums-05851e2b4b1fe0ad44e3afc7e91f0e8716d76e42.tar forums-05851e2b4b1fe0ad44e3afc7e91f0e8716d76e42.tar.gz forums-05851e2b4b1fe0ad44e3afc7e91f0e8716d76e42.tar.bz2 forums-05851e2b4b1fe0ad44e3afc7e91f0e8716d76e42.tar.xz forums-05851e2b4b1fe0ad44e3afc7e91f0e8716d76e42.zip | |
Merge branch '3.1.x'
Conflicts:
build/build.xml
phpBB/includes/constants.php
phpBB/install/schemas/schema_data.sql
phpBB/styles/prosilver/style.cfg
phpBB/styles/subsilver2/style.cfg
Diffstat (limited to 'phpBB/phpbb/db/migration')
| -rw-r--r-- | phpBB/phpbb/db/migration/data/v31x/v316rc1.php | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/phpBB/phpbb/db/migration/data/v31x/v316rc1.php b/phpBB/phpbb/db/migration/data/v31x/v316rc1.php new file mode 100644 index 0000000000..487cd05e5d --- /dev/null +++ b/phpBB/phpbb/db/migration/data/v31x/v316rc1.php @@ -0,0 +1,31 @@ +<?php +/** +* +* This file is part of the phpBB Forum Software package. +* +* @copyright (c) phpBB Limited <https://www.phpbb.com> +* @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 v316rc1 extends \phpbb\db\migration\migration +{ + static public function depends_on() + { + return array( + '\phpbb\db\migration\data\v31x\v315', + ); + } + + public function update_data() + { + return array( + array('config.update', array('version', '3.1.6-RC1')), + ); + } +} |
