Bug 25152: Make subscription.closed tinyint(1)
[koha.git] / installer / data / mysql / atomicupdate / bug_25152.perl
1 $DBversion = 'XXX'; # will be replaced by the RM
2 if( CheckVersion( $DBversion ) ) {
3     $dbh->do( "ALTER TABLE subscription MODIFY COLUMN closed tinyint(1) not null default 0" );
4
5     NewVersion( $DBversion, 25152, "Description");
6 }