Bug 22512: DBRev 18.12.00.038

Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
This commit is contained in:
Nick Clemens 2019-04-10 19:53:39 +00:00
parent a55e50cf62
commit 34b1713d86
3 changed files with 20 additions and 19 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.037";
$VERSION = "18.12.00.038";
sub version {
return $VERSION;

View file

@ -1,18 +0,0 @@
$DBversion = 'XXX'; # will be replaced by the RM
if ( CheckVersion($DBversion) ) {
if ( !column_exists( 'accountlines', 'status' ) ) {
$dbh->do(
qq{
ALTER TABLE `accountlines`
ADD
`status` varchar(16) DEFAULT NULL
AFTER
`accounttype`
}
);
}
SetVersion($DBversion);
print "Upgrade to $DBversion done (Bug 22512 - Add status to accountlines)\n";
}

View file

@ -17867,6 +17867,25 @@ if( CheckVersion( $DBversion ) ) {
print "Upgrade to $DBversion done (Bug 22607 - Set default value of issues.renewals to 0)\n";
}
$DBversion = '18.12.00.038';
if ( CheckVersion($DBversion) ) {
if ( !column_exists( 'accountlines', 'status' ) ) {
$dbh->do(
qq{
ALTER TABLE `accountlines`
ADD
`status` varchar(16) DEFAULT NULL
AFTER
`accounttype`
}
);
}
SetVersion($DBversion);
print "Upgrade to $DBversion done (Bug 22512 - Add status to accountlines)\n";
}
# SEE bug 13068
# if there is anything in the atomicupdate, read and execute it.