aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/db/migration/data
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2014-05-04 20:25:11 +0200
committerJoas Schilling <nickvergessen@gmx.de>2014-05-04 20:25:11 +0200
commit6cca7d0443a833c3e6b11c30bdfadc5f6d78c7f1 (patch)
treed70c693ed6641a841f74211baf326abd86ed131a /phpBB/phpbb/db/migration/data
parent5b6bce89c9866142bb489b6bd6bbf6362c4b9a7a (diff)
parenta469974c85fa04b3f0bc85bd99701920e83b016e (diff)
downloadforums-6cca7d0443a833c3e6b11c30bdfadc5f6d78c7f1.tar
forums-6cca7d0443a833c3e6b11c30bdfadc5f6d78c7f1.tar.gz
forums-6cca7d0443a833c3e6b11c30bdfadc5f6d78c7f1.tar.bz2
forums-6cca7d0443a833c3e6b11c30bdfadc5f6d78c7f1.tar.xz
forums-6cca7d0443a833c3e6b11c30bdfadc5f6d78c7f1.zip
Merge branch 'prep-release-3.1.0-b3' into develop-ascraeus
* prep-release-3.1.0-b3: [prep-release-3.1.0-b3] Update phpBB Version for b4 development [prep-release-3.1.0-b3] Add changelog for 3.1.0-b3 [prep-release-3.1.0-b3] Prepare Changelog [prep-release-3.1.0-b3] Add migration for 3.1.0-b3 [prep-release-3.1.0-b3] Update version to 3.1.0-b3
Diffstat (limited to 'phpBB/phpbb/db/migration/data')
-rw-r--r--phpBB/phpbb/db/migration/data/v310/beta3.php32
1 files changed, 32 insertions, 0 deletions
diff --git a/phpBB/phpbb/db/migration/data/v310/beta3.php b/phpBB/phpbb/db/migration/data/v310/beta3.php
new file mode 100644
index 0000000000..de4c6f7698
--- /dev/null
+++ b/phpBB/phpbb/db/migration/data/v310/beta3.php
@@ -0,0 +1,32 @@
+<?php
+/**
+*
+* @package migration
+* @copyright (c) 2014 phpBB Group
+* @license http://opensource.org/licenses/gpl-2.0.php GNU Public License v2
+*
+*/
+
+namespace phpbb\db\migration\data\v310;
+
+class beta3 extends \phpbb\db\migration\migration
+{
+ static public function depends_on()
+ {
+ return array(
+ '\phpbb\db\migration\data\v310\beta2',
+ '\phpbb\db\migration\data\v310\auth_provider_oauth2',
+ '\phpbb\db\migration\data\v310\board_contact_name',
+ '\phpbb\db\migration\data\v310\jquery_update2',
+ '\phpbb\db\migration\data\v310\live_searches_config',
+ '\phpbb\db\migration\data\v310\prune_shadow_topics',
+ );
+ }
+
+ public function update_data()
+ {
+ return array(
+ array('config.update', array('version', '3.1.0-b3')),
+ );
+ }
+}