Bug 10021: Update DB changes
Signed-off-by: Josef Moravec <josef.moravec@gmail.com> Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
This commit is contained in:
parent
f54693ac86
commit
fcbffbbc61
1 changed files with 14 additions and 0 deletions
14
installer/data/mysql/atomicupdate/bug_10021.perl
Normal file
14
installer/data/mysql/atomicupdate/bug_10021.perl
Normal file
|
@ -0,0 +1,14 @@
|
|||
$DBversion = 'XXX'; # will be replaced by the RM
|
||||
if( CheckVersion( $DBversion ) ) {
|
||||
|
||||
$dbh->do(q|DROP TABLE IF EXISTS notifys|);
|
||||
|
||||
if( column_exists( 'accountlines', 'notify_id' ) ) {
|
||||
$dbh->do(q|ALTER TABLE accountlines DROP COLUMN notify_id|);
|
||||
$dbh->do(q|ALTER TABLE accountlines DROP COLUMN notify_level|);
|
||||
}
|
||||
|
||||
# Always end with this (adjust the bug info)
|
||||
SetVersion( $DBversion );
|
||||
print "Upgrade to $DBversion done (Bug 10021 - Drop notifys-related table and columns)\n";
|
||||
}
|
Loading…
Reference in a new issue