aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2013-11-13 23:19:47 +0100
committerJoas Schilling <nickvergessen@gmx.de>2013-11-19 01:18:21 +0100
commit7678186b0907e0852eabcd1f4ed2041a8a45060d (patch)
treeac9c6943d932443e3e8c7b1c6c0b16e6254a8253 /phpBB/phpbb
parent6ee05d369e5aa0acb307bf88f0ac15fb33aade2b (diff)
downloadforums-7678186b0907e0852eabcd1f4ed2041a8a45060d.tar
forums-7678186b0907e0852eabcd1f4ed2041a8a45060d.tar.gz
forums-7678186b0907e0852eabcd1f4ed2041a8a45060d.tar.bz2
forums-7678186b0907e0852eabcd1f4ed2041a8a45060d.tar.xz
forums-7678186b0907e0852eabcd1f4ed2041a8a45060d.zip
[prep-release-3.1.0-a2] Add migration for 3.1.0-a2
Diffstat (limited to 'phpBB/phpbb')
-rw-r--r--phpBB/phpbb/db/migration/data/v310/alpha2.php28
1 files changed, 28 insertions, 0 deletions
diff --git a/phpBB/phpbb/db/migration/data/v310/alpha2.php b/phpBB/phpbb/db/migration/data/v310/alpha2.php
new file mode 100644
index 0000000000..3c0853f924
--- /dev/null
+++ b/phpBB/phpbb/db/migration/data/v310/alpha2.php
@@ -0,0 +1,28 @@
+<?php
+/**
+*
+* @package migration
+* @copyright (c) 2013 phpBB Group
+* @license http://opensource.org/licenses/gpl-2.0.php GNU Public License v2
+*
+*/
+
+namespace phpbb\db\migration\data\v310;
+
+class alpha2 extends \phpbb\db\migration\migration
+{
+ static public function depends_on()
+ {
+ return array(
+ '\phpbb\db\migration\data\v310\alpha1',
+ '\phpbb\db\migration\data\v310\notifications_cron_p2',
+ );
+ }
+
+ public function update_data()
+ {
+ return array(
+ array('config.update', array('version', '3.1.0-a2')),
+ );
+ }
+}