]> git.koha-community.org Git - koha.git/blob - installer/data/mysql/atomicupdate/bug_10215.perl
Bug 10215: Increase the size of opacnote and librariannote for table subscriptionhistory
[koha.git] / installer / data / mysql / atomicupdate / bug_10215.perl
1 $DBversion = 'XXX';
2 if ( CheckVersion($DBversion) ) {
3
4     $dbh->do(q{ALTER TABLE subscriptionhistory CHANGE opacnote opacnote LONGTEXT NULL});
5     $dbh->do(q{ALTER TABLE subscriptionhistory CHANGE librariannote librariannote LONGTEXT NULL});
6
7     SetVersion ($DBversion);
8     print "Upgrade to $DBversion done (Bug 10215 - Increase the size of opacnote and librariannote for table subscriptionhistory)\n";
9 }