Bug 34889: DBRev 23.06.00.070

Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
This commit is contained in:
Tomás Cohen Arazi 2023-11-08 17:32:15 -03:00
parent 646683de1e
commit 46b8650858
Signed by: tomascohen
GPG key ID: 0A272EA1B2F3C15F
2 changed files with 9 additions and 6 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 = "23.06.00.069";
$VERSION = "23.06.00.070";
sub version {
return $VERSION;

View file

@ -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'";
},
};