Uping DBRev. Bug 17357 - WTHDRAWN is still used in installer files

Signed-off-by: Brendan Gallagher <brendan@bywatersolutions.com>

Signed-off-by: Brendan Gallagher <brendan@bywatersolutions.com>
This commit is contained in:
Brendan Gallagher 2016-10-11 04:52:13 +00:00
parent ce076e0e75
commit 442734b438
3 changed files with 11 additions and 2 deletions

View file

@ -29,7 +29,7 @@ use vars qw{ $VERSION };
# - #4 : the developer version. The 4th number is the database subversion.
# used by developers when the database changes. updatedatabase take care of the changes itself
# and is automatically called by Auth.pm when needed.
$VERSION = "16.06.00.031";
$VERSION = "16.06.00.032";
sub version {
return $VERSION;

View file

@ -1 +0,0 @@
UPDATE marc_subfield_structure SET authorised_value="WITHDRAWN" WHERE authorised_value="WTHDRAWN";

View file

@ -13083,6 +13083,16 @@ if ( CheckVersion($DBversion) ) {
SetVersion($DBversion);
}
$DBversion = "16.06.00.032";
if ( CheckVersion($DBversion) ) {
$dbh->do(q{
UPDATE marc_subfield_structure SET authorised_value="WITHDRAWN" WHERE authorised_value="WTHDRAWN";
});
print "Upgrade to $DBversion done (Bug 17357 - WTHDRAWN is still used in installer files)\n";
SetVersion($DBversion);
}
# DEVELOPER PROCESS, search for anything to execute in the db_update directory
# SEE bug 13068