Completed
Pull Request — develop-3.2.x (#45)
by Mario
01:50
created

v320_m3_update_data::update_data()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 7
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 0
loc 7
rs 9.4285
cc 1
eloc 3
nc 1
nop 0
1
<?php
2
/**
3
 *
4
 * PayPal Donation extension for the phpBB Forum Software package.
5
 *
6
 * @copyright (c) 2015 Skouat
7
 * @license GNU General Public License, version 2 (GPL-2.0)
8
 *
9
 */
10
11
namespace skouat\ppde\migrations\v32x;
12
13
class v320_m3_update_data extends \phpbb\db\migration\migration
14
{
15
	public static function depends_on()
16
	{
17
		return array('\skouat\ppde\migrations\v32x\v320_m2_update_schema');
18
	}
19
20
	public function update_data()
21
	{
22
		return array(
23
			// IPN Settings
24
			array('config.add', array('ppde_ipn_min_before_group', 0)),
25
		);
26
	}
27
}
28