Bug 21682: DBRev 18.06.00.048

Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
This commit is contained in:
Nick Clemens 2018-11-01 19:03:01 +00:00
parent ea19eee02e
commit 2d3ec5e625
3 changed files with 8 additions and 10 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.047";
$VERSION = "18.06.00.048";
sub version {
return $VERSION;

View file

@ -1,9 +0,0 @@
$DBversion = 'XXX'; # will be replaced by the RM
if( CheckVersion( $DBversion ) ) {
# you can use $dbh here like:
$dbh->do( "ALTER TABLE stockrotationrotas CHANGE COLUMN description description text" );
# Always end with this (adjust the bug info)
SetVersion( $DBversion );
print "Upgrade to $DBversion done (Bug 21682 - Remove default on stockrotationrotas.description)\n";
}

View file

@ -16749,6 +16749,13 @@ if( CheckVersion( $DBversion ) ) {
print "Upgrade to $DBversion done (Bug 19263 - Advanced Editor - Rancor - Add auto control number (001) widget)\n";
}
$DBversion = '18.06.00.048';
if( CheckVersion( $DBversion ) ) {
$dbh->do( "ALTER TABLE stockrotationrotas CHANGE COLUMN description description text" );
SetVersion( $DBversion );
print "Upgrade to $DBversion done (Bug 21682 - Remove default on stockrotationrotas.description)\n";
}
# SEE bug 13068
# if there is anything in the atomicupdate, read and execute it.