DBRev Bug 15084 - Move the currency related code to

Koha::Acquisition::Currenc[y|ies]

Signed-off-by: Brendan A Gallagher <brendan@bywatersolutions.com>
This commit is contained in:
Brendan A Gallagher 2016-03-09 15:14:48 +00:00
parent 0c40349096
commit 361ee8beab
3 changed files with 16 additions and 5 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 = "3.23.00.038";
$VERSION = "3.23.00.039";
sub version {
return $VERSION;

View file

@ -1,4 +0,0 @@
ALTER TABLE suggestions
MODIFY COLUMN currency varchar(10) default NULL;
ALTER TABLE aqbooksellers
MODIFY COLUMN currency varchar(10) default NULL;

View file

@ -12007,6 +12007,21 @@ if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) {
SetVersion($DBversion);
}
$DBversion = "3.23.00.039";
if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) {
$dbh->do(q{
ALTER TABLE suggestions
MODIFY COLUMN currency varchar(10) default NULL;
});
$dbh->do(q{
ALTER TABLE aqbooksellers
MODIFY COLUMN currency varchar(10) default NULL;
});
print "Upgrade to $DBversion done (Bug 15084 - Move the currency related code to Koha::Acquisition::Currenc[y|ies])\n";
SetVersion($DBversion);
}
# DEVELOPER PROCESS, search for anything to execute in the db_update directory
# SEE bug 13068
# if there is anything in the atomicupdate, read and execute it.