Bug 21235: DBRev 18.06.00.027

Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
This commit is contained in:
Nick Clemens 2018-09-07 15:53:24 +00:00
parent 96a095f4e1
commit c66a2894e1
3 changed files with 8 additions and 9 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.06.00.026";
$VERSION = "18.06.00.027";
sub version {
return $VERSION;

View file

@ -1,8 +0,0 @@
$DBversion = 'XXX'; # will be replaced by the RM
if( CheckVersion( $DBversion ) ) {
$dbh->do( "DROP TABLE IF EXISTS services_throttle" );
# Always end with this (adjust the bug info)
SetVersion( $DBversion );
print "Upgrade to $DBversion done (Bug 21235: Remove table services_throttle)\n";
}

View file

@ -16378,6 +16378,13 @@ INSERT IGNORE INTO systempreferences (variable, value, options, explanation, ty
print "Upgrade to $DBversion done (Bug 17530 - Add pref ArticleRequestsLinkControl)\n";
}
$DBversion = '18.06.00.027';
if( CheckVersion( $DBversion ) ) {
$dbh->do( "DROP TABLE IF EXISTS services_throttle" );
SetVersion( $DBversion );
print "Upgrade to $DBversion done (Bug 21235: Remove table services_throttle)\n";
}
# SEE bug 13068
# if there is anything in the atomicupdate, read and execute it.