Browse Source

Bug 24434: DBRev 21.06.00.003

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
21.11.x
Jonathan Druart 3 years ago
parent
commit
a99f0a77d6
  1. 2
      Koha.pm
  2. 28
      installer/data/mysql/atomicupdate/bug_24434.perl
  3. 29
      installer/data/mysql/updatedatabase.pl

2
Koha.pm

@ -29,7 +29,7 @@ use vars qw{ $VERSION };
# - #4 : the developer version. The 4th number is the database subversion. # - #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 # used by developers when the database changes. updatedatabase take care of the changes itself
# and is automatically called by Auth.pm when needed. # and is automatically called by Auth.pm when needed.
$VERSION = "21.06.00.002"; $VERSION = "21.06.00.003";
sub version { sub version {
return $VERSION; return $VERSION;

28
installer/data/mysql/atomicupdate/bug_24434.perl

@ -1,28 +0,0 @@
$DBversion = 'XXX'; # will be replaced by the RM
if( CheckVersion( $DBversion ) ) {
# Add 'WrongTransfer' to branchtransfers cancellation_reason enum
$dbh->do(
q{
ALTER TABLE
`branchtransfers`
MODIFY COLUMN
`cancellation_reason` enum(
'Manual',
'StockrotationAdvance',
'StockrotationRepatriation',
'ReturnToHome',
'ReturnToHolding',
'RotatingCollection',
'Reserve',
'LostReserve',
'CancelReserve',
'ItemLost',
'WrongTransfer'
)
AFTER `comments`
}
);
NewVersion( $DBversion, 24434, "Add 'WrongTransfer' to branchtransfers.cancellation_reason enum");
}

29
installer/data/mysql/updatedatabase.pl

@ -24319,6 +24319,35 @@ if( CheckVersion( $DBversion ) ) {
NewVersion( $DBversion, 28490, "Bring back accidentally deleted relationship columns"); NewVersion( $DBversion, 28490, "Bring back accidentally deleted relationship columns");
} }
$DBversion = '21.06.00.003';
if( CheckVersion( $DBversion ) ) {
# Add 'WrongTransfer' to branchtransfers cancellation_reason enum
$dbh->do(
q{
ALTER TABLE
`branchtransfers`
MODIFY COLUMN
`cancellation_reason` enum(
'Manual',
'StockrotationAdvance',
'StockrotationRepatriation',
'ReturnToHome',
'ReturnToHolding',
'RotatingCollection',
'Reserve',
'LostReserve',
'CancelReserve',
'ItemLost',
'WrongTransfer'
)
AFTER `comments`
}
);
NewVersion( $DBversion, 24434, "Add 'WrongTransfer' to branchtransfers.cancellation_reason enum");
}
# SEE bug 13068 # SEE bug 13068
# if there is anything in the atomicupdate, read and execute it. # if there is anything in the atomicupdate, read and execute it.
my $update_dir = C4::Context->config('intranetdir') . '/installer/data/mysql/atomicupdate/'; my $update_dir = C4::Context->config('intranetdir') . '/installer/data/mysql/atomicupdate/';

Loading…
Cancel
Save