Bug 21144: DBRev 18.06.00.017
Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
This commit is contained in:
parent
266d7b5fa8
commit
df06587b76
3 changed files with 8 additions and 4 deletions
2
Koha.pm
2
Koha.pm
|
@ -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 = "18.06.00.016";
|
||||
$VERSION = "18.06.00.017";
|
||||
|
||||
sub version {
|
||||
return $VERSION;
|
||||
|
|
|
@ -1,3 +0,0 @@
|
|||
INSERT IGNORE INTO authorised_value_categories (category_name) VALUES ('ROADTYPE');
|
||||
|
||||
--Bug 21144: Add ROADTYPE to default authorised values categories
|
|
@ -16266,6 +16266,13 @@ if( CheckVersion( $DBversion ) ) {
|
|||
print "Upgrade to $DBversion done (Bug 20773 - expirationdate filled for waiting holds)\n";
|
||||
}
|
||||
|
||||
$DBversion = '18.06.00.017';
|
||||
if( CheckVersion( $DBversion ) ) {
|
||||
$dbh->do(q|INSERT IGNORE INTO authorised_value_categories (category_name) VALUES ('ROADTYPE');|);
|
||||
SetVersion( $DBversion );
|
||||
print "Upgrade to $DBversion done (Bug 21144: Add ROADTYPE to default authorised values categories)\n";
|
||||
}
|
||||
|
||||
# SEE bug 13068
|
||||
# if there is anything in the atomicupdate, read and execute it.
|
||||
|
||||
|
|
Loading…
Reference in a new issue