diff options
author | Nils Adermann <naderman@naderman.de> | 2014-11-02 00:08:21 +0100 |
---|---|---|
committer | Nils Adermann <naderman@naderman.de> | 2014-11-02 00:08:21 +0100 |
commit | 4ae9e8cf6e5d4abbcadafa72fa3784d85e847768 (patch) | |
tree | 07c21a4ab92d00a28a1029cce57a56953a35447f /phpBB | |
parent | 0843fd4b7778b371eb65a5f38b09c47567b013ff (diff) | |
download | forums-4ae9e8cf6e5d4abbcadafa72fa3784d85e847768.tar forums-4ae9e8cf6e5d4abbcadafa72fa3784d85e847768.tar.gz forums-4ae9e8cf6e5d4abbcadafa72fa3784d85e847768.tar.bz2 forums-4ae9e8cf6e5d4abbcadafa72fa3784d85e847768.tar.xz forums-4ae9e8cf6e5d4abbcadafa72fa3784d85e847768.zip |
[prep-release-3.1.1] Add 3.1.1 migration file
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/phpbb/db/migration/data/v31x/v311.php | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/phpBB/phpbb/db/migration/data/v31x/v311.php b/phpBB/phpbb/db/migration/data/v31x/v311.php new file mode 100644 index 0000000000..00844dd4c0 --- /dev/null +++ b/phpBB/phpbb/db/migration/data/v31x/v311.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 v311 extends \phpbb\db\migration\migration +{ + static public function depends_on() + { + return array( + '\phpbb\db\migration\data\v310\gold', + '\phpbb\db\migration\data\v31x\style_update', + ); + } + + public function update_data() + { + return array( + array('config.update', array('version', '3.1.1')), + ); + } +} |