aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2015-05-03 17:12:12 +0200
committerJoas Schilling <nickvergessen@gmx.de>2015-05-03 17:12:12 +0200
commit429b99922efca766a04bb96803c1788304f66b64 (patch)
tree26ffc14230d6a166ab375799060e7447ab8f1654 /phpBB
parent199d823f7a147ab913a273873c37dfcde7550db4 (diff)
downloadforums-429b99922efca766a04bb96803c1788304f66b64.tar
forums-429b99922efca766a04bb96803c1788304f66b64.tar.gz
forums-429b99922efca766a04bb96803c1788304f66b64.tar.bz2
forums-429b99922efca766a04bb96803c1788304f66b64.tar.xz
forums-429b99922efca766a04bb96803c1788304f66b64.zip
[prep-release-3.1.4] Add migration
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/phpbb/db/migration/data/v31x/v314.php32
1 files changed, 32 insertions, 0 deletions
diff --git a/phpBB/phpbb/db/migration/data/v31x/v314.php b/phpBB/phpbb/db/migration/data/v31x/v314.php
new file mode 100644
index 0000000000..b7793ca569
--- /dev/null
+++ b/phpBB/phpbb/db/migration/data/v31x/v314.php
@@ -0,0 +1,32 @@
+<?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 v314 extends \phpbb\db\migration\migration
+{
+ static public function depends_on()
+ {
+ return array(
+ '\phpbb\db\migration\data\v30x\release_3_0_14',
+ '\phpbb\db\migration\data\v31x\v314rc2',
+ );
+ }
+
+ public function update_data()
+ {
+ return array(
+ array('config.update', array('version', '3.1.4')),
+ );
+ }
+}