Bug 10021: Update DB changes
[koha.git] / installer / data / mysql / atomicupdate / bug_10021.perl
1 $DBversion = 'XXX';  # will be replaced by the RM
2 if( CheckVersion( $DBversion ) ) {
3
4     $dbh->do(q|DROP TABLE IF EXISTS notifys|);
5
6     if( column_exists( 'accountlines', 'notify_id' ) ) {
7         $dbh->do(q|ALTER TABLE accountlines DROP COLUMN notify_id|);
8         $dbh->do(q|ALTER TABLE accountlines DROP COLUMN notify_level|);
9     }
10
11     # Always end with this (adjust the bug info)
12     SetVersion( $DBversion );
13     print "Upgrade to $DBversion done (Bug 10021 - Drop notifys-related table and columns)\n";
14 }