Bug 13560: Database changes
[koha.git] / installer / data / mysql / atomicupdate / bug13560.perl
1 $DBversion = 'XXX';  # will be replaced by the RM
2 if( CheckVersion( $DBversion ) ) {
3     $dbh->do( "ALTER TABLE marc_modification_template_actions CHANGE action action ENUM('delete_field','add_field','update_field','move_field','copy_field','copy_and_replace_field')" );
4     SetVersion( $DBversion );
5     print "Upgrade to $DBversion done (Bug 13560 - need an add option in marc modification templates)\n";
6 }