aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/db/migration
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2014-11-24 21:32:17 +0100
committerJoas Schilling <nickvergessen@gmx.de>2014-11-24 21:32:17 +0100
commit0fbe8e8e69729efd6c842bb167faa714d4cd8d35 (patch)
tree01de44854bf245951fd572c8b1c42336084d6f13 /phpBB/phpbb/db/migration
parent3862b60094c591365454ee52c688743486d9cc8f (diff)
downloadforums-0fbe8e8e69729efd6c842bb167faa714d4cd8d35.tar
forums-0fbe8e8e69729efd6c842bb167faa714d4cd8d35.tar.gz
forums-0fbe8e8e69729efd6c842bb167faa714d4cd8d35.tar.bz2
forums-0fbe8e8e69729efd6c842bb167faa714d4cd8d35.tar.xz
forums-0fbe8e8e69729efd6c842bb167faa714d4cd8d35.zip
[prep-release-3.1.2] Add migration to update version to 3.1.2
Diffstat (limited to 'phpBB/phpbb/db/migration')
-rw-r--r--phpBB/phpbb/db/migration/data/v31x/v312.php31
1 files changed, 31 insertions, 0 deletions
diff --git a/phpBB/phpbb/db/migration/data/v31x/v312.php b/phpBB/phpbb/db/migration/data/v31x/v312.php
new file mode 100644
index 0000000000..12a3ec3ae6
--- /dev/null
+++ b/phpBB/phpbb/db/migration/data/v31x/v312.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 v312 extends \phpbb\db\migration\migration
+{
+ static public function depends_on()
+ {
+ return array(
+ '\phpbb\db\migration\data\v31x\v312rc1',
+ );
+ }
+
+ public function update_data()
+ {
+ return array(
+ array('config.update', array('version', '3.1.2')),
+ );
+ }
+}