mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-08 04:18:52 +00:00
[ticket/15747] Replace migration
PHPBB3-15747
This commit is contained in:
parent
c24b801746
commit
225a6e2cbe
2 changed files with 4 additions and 49 deletions
|
@ -1,45 +0,0 @@
|
||||||
<?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\v330;
|
|
||||||
|
|
||||||
class storage_adapter_local_depth_rename extends \phpbb\db\migration\migration
|
|
||||||
{
|
|
||||||
static public function depends_on()
|
|
||||||
{
|
|
||||||
return array(
|
|
||||||
'\phpbb\db\migration\data\v330\storage_adapter_local_depth',
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
public function update_data()
|
|
||||||
{
|
|
||||||
return array(
|
|
||||||
array('if', array(
|
|
||||||
($this->config['storage\\attachment\\provider'] == \phpbb\storage\provider\local::class),
|
|
||||||
array('config.delete', array('storage\\attachment\\config\\depth')),
|
|
||||||
array('config.add', array('storage\\attachment\\config\\subfolders', '0')),
|
|
||||||
)),
|
|
||||||
array('if', array(
|
|
||||||
($this->config['storage\\avatar\\provider'] == \phpbb\storage\provider\local::class),
|
|
||||||
array('config.delete', array('storage\\avatar\\config\\depth')),
|
|
||||||
array('config.add', array('storage\\avatar\\config\\subfolders', '0')),
|
|
||||||
)),
|
|
||||||
array('if', array(
|
|
||||||
($this->config['storage\\backup\\provider'] == \phpbb\storage\provider\local::class),
|
|
||||||
array('config.delete', array('storage\\backup\\config\\depth')),
|
|
||||||
array('config.add', array('storage\\backup\\config\\subfolders', '0')),
|
|
||||||
)),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -13,7 +13,7 @@
|
||||||
|
|
||||||
namespace phpbb\db\migration\data\v330;
|
namespace phpbb\db\migration\data\v330;
|
||||||
|
|
||||||
class storage_adapter_local_depth extends \phpbb\db\migration\migration
|
class storage_adapter_local_subfolders extends \phpbb\db\migration\migration
|
||||||
{
|
{
|
||||||
static public function depends_on()
|
static public function depends_on()
|
||||||
{
|
{
|
||||||
|
@ -29,15 +29,15 @@ class storage_adapter_local_depth extends \phpbb\db\migration\migration
|
||||||
return array(
|
return array(
|
||||||
array('if', array(
|
array('if', array(
|
||||||
($this->config['storage\\attachment\\provider'] == \phpbb\storage\provider\local::class),
|
($this->config['storage\\attachment\\provider'] == \phpbb\storage\provider\local::class),
|
||||||
array('config.add', array('storage\\attachment\\config\\depth', '0')),
|
array('config.add', array('storage\\attachment\\config\\subfolders', '0')),
|
||||||
)),
|
)),
|
||||||
array('if', array(
|
array('if', array(
|
||||||
($this->config['storage\\avatar\\provider'] == \phpbb\storage\provider\local::class),
|
($this->config['storage\\avatar\\provider'] == \phpbb\storage\provider\local::class),
|
||||||
array('config.add', array('storage\\avatar\\config\\depth', '0')),
|
array('config.add', array('storage\\avatar\\config\\subfolders', '0')),
|
||||||
)),
|
)),
|
||||||
array('if', array(
|
array('if', array(
|
||||||
($this->config['storage\\backup\\provider'] == \phpbb\storage\provider\local::class),
|
($this->config['storage\\backup\\provider'] == \phpbb\storage\provider\local::class),
|
||||||
array('config.add', array('storage\\backup\\config\\depth', '0')),
|
array('config.add', array('storage\\backup\\config\\subfolders', '0')),
|
||||||
)),
|
)),
|
||||||
);
|
);
|
||||||
}
|
}
|
Loading…
Add table
Reference in a new issue