Bug 10796: DBRev 18.12.00.045
Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
This commit is contained in:
parent
7205a02a19
commit
8c1bd93a3b
3 changed files with 16 additions and 15 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.12.00.044";
|
||||
$VERSION = "18.12.00.045";
|
||||
|
||||
sub version {
|
||||
return $VERSION;
|
||||
|
|
|
@ -1,14 +0,0 @@
|
|||
$DBversion = 'XXX';
|
||||
if( CheckVersion( $DBversion ) ) {
|
||||
|
||||
if ( !column_exists( 'categories', 'change_password' ) ) {
|
||||
$dbh->do(q{
|
||||
ALTER TABLE categories
|
||||
ADD COLUMN change_password TINYINT(1) NULL DEFAULT NULL
|
||||
AFTER reset_password
|
||||
});
|
||||
}
|
||||
|
||||
SetVersion( $DBversion );
|
||||
print "Upgrade to $DBversion done (Bug 10796 - Patron password change by category)\n";
|
||||
}
|
|
@ -17990,6 +17990,21 @@ if( CheckVersion( $DBversion ) ) {
|
|||
print "Upgrade to $DBversion done (Bug 21890 - Patron password reset by category)\n";
|
||||
}
|
||||
|
||||
$DBversion = '18.12.00.045';
|
||||
if( CheckVersion( $DBversion ) ) {
|
||||
|
||||
if ( !column_exists( 'categories', 'change_password' ) ) {
|
||||
$dbh->do(q{
|
||||
ALTER TABLE categories
|
||||
ADD COLUMN change_password TINYINT(1) NULL DEFAULT NULL
|
||||
AFTER reset_password
|
||||
});
|
||||
}
|
||||
|
||||
SetVersion( $DBversion );
|
||||
print "Upgrade to $DBversion done (Bug 10796 - Patron password change by category)\n";
|
||||
}
|
||||
|
||||
# SEE bug 13068
|
||||
# if there is anything in the atomicupdate, read and execute it.
|
||||
|
||||
|
|
Loading…
Reference in a new issue