Lines 11391-11404
if ( CheckVersion($DBversion) ) {
Link Here
|
11391 |
SetVersion ($DBversion); |
11391 |
SetVersion ($DBversion); |
11392 |
} |
11392 |
} |
11393 |
|
11393 |
|
11394 |
$DBversion = "XXX"; |
|
|
11395 |
if ( CheckVersion($DBversion) ) { |
11396 |
$dbh->do("ALTER TABLE `marc_subfield_structure` ADD COLUMN `important` TINYINT(4) NOT NULL DEFAULT 0 AFTER `mandatory`"); |
11397 |
$dbh->do("ALTER TABLE `marc_tag_structure` ADD COLUMN `important` TINYINT(4) NOT NULL DEFAULT 0 AFTER `frameworkcode`"); |
11398 |
print "Upgrade to $DBversion done (Bug 8643 - Add important constraint to marc subfields)\n"; |
11399 |
SetVersion($DBversion); |
11400 |
} |
11401 |
|
11402 |
# DEVELOPER PROCESS, search for anything to execute in the db_update directory |
11394 |
# DEVELOPER PROCESS, search for anything to execute in the db_update directory |
11403 |
# SEE bug 13068 |
11395 |
# SEE bug 13068 |
11404 |
# if there is anything in the atomicupdate, read and execute it. |
11396 |
# if there is anything in the atomicupdate, read and execute it. |
11405 |
- |
|
|