Bug 25010: Fix typo 'rewewal' in debit types
[koha-equinox.git] / installer / data / mysql / atomicupdate / bug_25010_rewewal.perl
1 $DBversion = 'XXX'; # will be replaced by the RM
2 if( CheckVersion( $DBversion ) ) {
3     # you can use $dbh here like:
4     $dbh->do( "UPDATE account_debit_types SET description = REPLACE(description,'Rewewal','Renewal') WHERE description like '%Rewewal%'" );
5
6     # Always end with this (adjust the bug info)
7     NewVersion( $DBversion, 25010, "Fix typo in account_debit_type description");
8 }