Bug 10363: (follow-up) DB update - change in kohastructure.sql
[koha.git] / installer / data / mysql / atomicupdate / bug_10363_av_package.sql
1 ALTER TABLE authorised_values_branches
2     CHANGE av_id av_id INT( 11 ) NOT NULL,
3     CHANGE branchcode branchcode VARCHAR( 10 ) NOT NULL;
4
5 /*
6 $DBversion = "3.21.00.XXX";
7 if ( CheckVersion($DBversion) ) {
8    $dbh->do(q{
9        ALTER TABLE authorised_values_branches
10          CHANGE av_id av_id INT( 11 ) NOT NULL,
11          CHANGE branchcode branchcode VARCHAR( 10 ) NOT NULL
12    });
13    print "Upgrade to $DBversion done (Bug 10363: There is no package for authorised values)\n";
14    SetVersion($DBversion);
15 }
16 */