Bug 8732: Update statement
[koha-equinox.git] / installer / data / mysql / atomicupdate / bug_8732_add_BiblioItemtypeInfo_system_preference.perl
1 $DBversion = 'XXX'; # will be replaced by the RM
2 if( CheckVersion( $DBversion ) ) {
3     $dbh->do( "INSERT IGNORE INTO systempreferences (variable,value,explanation,options,type) VALUES('BiblioItemtypeInfo', '0','Control whether biblio level itemtype image displays','0','YesNo')" );
4
5     SetVersion( $DBversion );
6     print "Upgrade to $DBversion done (Bug 8732: Add new BiblioItemtypeInfo to system preferences)\n";
7 }