1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 05:50:42 +02:00

[ticket/17357] Remove file_info from storage

PHPBB-17357
This commit is contained in:
Ruben Calvo
2024-06-30 13:59:41 +02:00
parent 1dacbf6bde
commit 877e364cbd
16 changed files with 118 additions and 281 deletions

View File

@@ -0,0 +1,41 @@
<?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\v400;
use phpbb\db\migration\migration;
class remove_img_link extends migration
{
public function effectively_installed()
{
return !$this->config->offsetExists('img_link_width')
&& !$this->config->offsetExists('img_link_height');
}
public static function depends_on()
{
return [
'\phpbb\db\migration\data\v400\dev'
];
}
public function update_data()
{
return [
['config.remove', ['img_link_width']],
['config.remove', ['img_link_height']],
];
}
}