aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/db
diff options
context:
space:
mode:
authorTristan Darricau <github@nicofuma.fr>2014-05-12 17:23:50 +0200
committerTristan Darricau <github@nicofuma.fr>2014-05-28 22:19:03 +0200
commit8dc10d6971ede7fbc63fb3fd92512f95d9ec5dfb (patch)
tree93cd7a5f42e1a92f43d39c718bf32ee071399a65 /phpBB/phpbb/db
parentf4d598559f28ef2f16b47d7e33d90305fd42173e (diff)
downloadforums-8dc10d6971ede7fbc63fb3fd92512f95d9ec5dfb.tar
forums-8dc10d6971ede7fbc63fb3fd92512f95d9ec5dfb.tar.gz
forums-8dc10d6971ede7fbc63fb3fd92512f95d9ec5dfb.tar.bz2
forums-8dc10d6971ede7fbc63fb3fd92512f95d9ec5dfb.tar.xz
forums-8dc10d6971ede7fbc63fb3fd92512f95d9ec5dfb.zip
[ticket/11366] Add $config['extension_force_unstable']
PHPBB3-11366
Diffstat (limited to 'phpBB/phpbb/db')
-rw-r--r--phpBB/phpbb/db/migration/data/v310/extensions_version_check_force_unstable.php25
1 files changed, 25 insertions, 0 deletions
diff --git a/phpBB/phpbb/db/migration/data/v310/extensions_version_check_force_unstable.php b/phpBB/phpbb/db/migration/data/v310/extensions_version_check_force_unstable.php
new file mode 100644
index 0000000000..5941c3aa54
--- /dev/null
+++ b/phpBB/phpbb/db/migration/data/v310/extensions_version_check_force_unstable.php
@@ -0,0 +1,25 @@
+<?php
+/**
+*
+* @package migration
+* @copyright (c) 2012 phpBB Group
+* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
+*
+*/
+
+namespace phpbb\db\migration\data\v310;
+
+class extensions_version_check_force_unstable extends \phpbb\db\migration\migration
+{
+ static public function depends_on()
+ {
+ return array('\phpbb\db\migration\data\v310\dev');
+ }
+
+ public function update_data()
+ {
+ return array(
+ array('config.add', array('extension_force_unstable', false)),
+ );
+ }
+}