Browse Source

Bug 21728: Add 'Reserve Fee' to the account_offset_types

Signed-off-by: Josef Moravec <josef.moravec@gmail.com>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>

Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
19.05.x
Martin Renvoize 6 years ago
committed by Nick Clemens
parent
commit
6ca8b1eed2
  1. 9
      installer/data/mysql/atomicupdate/bug_21728_add_accountoffset_reserve.perl

9
installer/data/mysql/atomicupdate/bug_21728_add_accountoffset_reserve.perl

@ -0,0 +1,9 @@
$DBversion = 'XXX'; # will be replaced by the RM
if( CheckVersion( $DBversion ) ) {
$dbh->do(q{
INSERT IGNORE INTO account_offset_types ( type ) VALUES ( 'Reserve Fee' );
});
SetVersion( $DBversion );
print "Upgrade to $DBversion done (Bug 21728 - Add 'Reserve Fee' to the account_offset_types table if missing)\n";
}
Loading…
Cancel
Save