Bug 24329: Add a test
[koha.git] / installer / data / mysql / atomicupdate / bug_24329.perl
1 $DBversion = 'XXX'; # will be replaced by the RM
2 if( CheckVersion( $DBversion ) ) {
3     $dbh->do( "ALTER TABLE action_logs MODIFY COLUMN `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP" );
4
5     # Always end with this (adjust the bug info)
6     SetVersion( $DBversion );
7     print "Upgrade to $DBversion done (Bug 24329 - Do not update action_log.timestamp)\n";
8 }