aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/db
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2019-06-17 09:35:05 +0200
committerMarc Alexander <admin@m-a-styles.de>2019-06-17 09:35:05 +0200
commit5741c8d8ee8ef0bb934c432278510cef1c1e90b8 (patch)
tree4ed71afabacb5f7737859fc765bb889ae109f710 /phpBB/phpbb/db
parent6007978e7bbda3a3c5cc2b2b4f10ba80ce885c03 (diff)
parent46ea774950dc7e2aa1edfcf88d2c8f672a57dfb9 (diff)
downloadforums-5741c8d8ee8ef0bb934c432278510cef1c1e90b8.tar
forums-5741c8d8ee8ef0bb934c432278510cef1c1e90b8.tar.gz
forums-5741c8d8ee8ef0bb934c432278510cef1c1e90b8.tar.bz2
forums-5741c8d8ee8ef0bb934c432278510cef1c1e90b8.tar.xz
forums-5741c8d8ee8ef0bb934c432278510cef1c1e90b8.zip
Merge branch '3.2.x' into 3.3.x
Diffstat (limited to 'phpBB/phpbb/db')
-rw-r--r--phpBB/phpbb/db/migration/data/v32x/timezone_p3.php29
1 files changed, 29 insertions, 0 deletions
diff --git a/phpBB/phpbb/db/migration/data/v32x/timezone_p3.php b/phpBB/phpbb/db/migration/data/v32x/timezone_p3.php
new file mode 100644
index 0000000000..433f62ace9
--- /dev/null
+++ b/phpBB/phpbb/db/migration/data/v32x/timezone_p3.php
@@ -0,0 +1,29 @@
+<?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\v32x;
+
+class timezone_p3 extends \phpbb\db\migration\migration
+{
+ static public function depends_on()
+ {
+ return array('\phpbb\db\migration\data\v310\timezone');
+ }
+
+ public function update_data()
+ {
+ return array(
+ array('config.remove', array('board_dst')),
+ );
+ }
+}