Bug 21241: DBRev 18.12.00.009

Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
This commit is contained in:
Nick Clemens 2019-01-28 11:45:49 +00:00
parent 89d4b5ea58
commit 63f897c06e
3 changed files with 10 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 = "18.12.00.008";
$VERSION = "18.12.00.009";
sub version {
return $VERSION;

View file

@ -1 +0,0 @@
INSERT IGNORE INTO systempreferences (variable, value, options, explanation, type) VALUES ('FallbackToSMSIfNoEmail', 0, 'Enable|Disable', 'Send messages by SMS if no patron email is defined', 'YesNo');

View file

@ -17269,6 +17269,15 @@ if( CheckVersion( $DBversion ) ) {
print "Upgrade to $DBversion done (Bug 17047 - Mana knowledge base)\n";
}
$DBversion = '18.12.00.009';
if( CheckVersion( $DBversion ) ) {
$dbh->do(q{
INSERT IGNORE INTO systempreferences (variable, value, options, explanation, type) VALUES ('FallbackToSMSIfNoEmail', 0, 'Enable|Disable', 'Send messages by SMS if no patron email is defined', 'YesNo');
});
SetVersion( $DBversion );
print "Upgrade to $DBversion done (Bug 17047 - Mana knowledge base)\n";
}
# SEE bug 13068
# if there is anything in the atomicupdate, read and execute it.