Bug 23151: (QA follow-up) Remove debug leftover
[koha.git] / installer / data / mysql / atomicupdate / bug_23151.perl
1 $DBversion = 'XXX';
2 if ( CheckVersion( $DBversion ) ) {
3     unless ( column_exists( 'borrower_modifications', 'changed_fields' ) ) {
4         $dbh->do("ALTER TABLE borrower_modifications ADD changed_fields MEDIUMTEXT AFTER verification_token;");
5     }
6     SetVersion( $DBversion );
7     print "Upgrade to $DBversion done (Bug 23151 - Add borrower_modifications.changed_fields column)\n";
8 }