Bug 34889: DBRev 23.06.00.070
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
This commit is contained in:
parent
646683de1e
commit
46b8650858
2 changed files with 9 additions and 6 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 = "23.06.00.069";
|
||||
$VERSION = "23.06.00.070";
|
||||
|
||||
sub version {
|
||||
return $VERSION;
|
||||
|
|
|
@ -30,9 +30,12 @@ return {
|
|||
undef, $insert_id, $patronselfregistrationadditionalinstructions
|
||||
);
|
||||
|
||||
# Remove old system preference
|
||||
$dbh->do("DELETE FROM systempreferences WHERE variable='PatronSelfRegistrationAdditionalInstructions'");
|
||||
say $out "Bug 34889 update done";
|
||||
say $out "Added 'PatronSelfRegistrationAdditionalInstructions' additional content";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
# Remove old system preference
|
||||
$dbh->do("DELETE FROM systempreferences WHERE variable='PatronSelfRegistrationAdditionalInstructions'");
|
||||
say $out "Removed system preference 'PatronSelfRegistrationAdditionalInstructions'";
|
||||
|
||||
},
|
||||
};
|
Loading…
Reference in a new issue