aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/db/migration/data
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2014-05-30 16:27:42 +0200
committerJoas Schilling <nickvergessen@gmx.de>2014-05-30 16:27:42 +0200
commit0cfc0413ca36230be1d8e3ca97b7c0dea2b99069 (patch)
tree34dd89af036aa7224bd0f928008d36c71e58dce3 /phpBB/phpbb/db/migration/data
parentb6135d3d02285542656b179c32ee7297f29fd5e7 (diff)
downloadforums-0cfc0413ca36230be1d8e3ca97b7c0dea2b99069.tar
forums-0cfc0413ca36230be1d8e3ca97b7c0dea2b99069.tar.gz
forums-0cfc0413ca36230be1d8e3ca97b7c0dea2b99069.tar.bz2
forums-0cfc0413ca36230be1d8e3ca97b7c0dea2b99069.tar.xz
forums-0cfc0413ca36230be1d8e3ca97b7c0dea2b99069.zip
[prep-release-3.1.0-b4] Add migration for 3.1.0-b4
Diffstat (limited to 'phpBB/phpbb/db/migration/data')
-rw-r--r--phpBB/phpbb/db/migration/data/v310/beta4.php33
1 files changed, 33 insertions, 0 deletions
diff --git a/phpBB/phpbb/db/migration/data/v310/beta4.php b/phpBB/phpbb/db/migration/data/v310/beta4.php
new file mode 100644
index 0000000000..3e91d95178
--- /dev/null
+++ b/phpBB/phpbb/db/migration/data/v310/beta4.php
@@ -0,0 +1,33 @@
+<?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\v310;
+
+class beta4 extends \phpbb\db\migration\migration
+{
+ static public function depends_on()
+ {
+ return array(
+ '\phpbb\db\migration\data\v310\beta3',
+ '\phpbb\db\migration\data\v310\extensions_version_check_force_unstable',
+ '\phpbb\db\migration\data\v310\reset_missing_captcha_plugin',
+ );
+ }
+
+ public function update_data()
+ {
+ return array(
+ array('config.update', array('version', '3.1.0-b4')),
+ );
+ }
+}