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:
Jonathan Druart 2017-10-23 12:27:33 -03:00
parent f54693ac86
commit fcbffbbc61

View 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";
}