From 18644009c6a953074f77929597d6ebd6fc4f871d Mon Sep 17 00:00:00 2001 From: Brendan A Gallagher Date: Thu, 31 Mar 2016 17:06:26 +0000 Subject: [PATCH] DBrev Bug 16004 - Replace items.new with items.new_status Signed-off-by: Brendan A Gallagher --- Koha.pm | 2 +- .../bug_xxxx-change_new_to_new_status.sql | 3 --- installer/data/mysql/updatedatabase.pl | 18 ++++++++++++++++++ 3 files changed, 19 insertions(+), 4 deletions(-) delete mode 100644 installer/data/mysql/atomicupdate/bug_xxxx-change_new_to_new_status.sql diff --git a/Koha.pm b/Koha.pm index 353e2ebbcf..fc86716378 100644 --- a/Koha.pm +++ b/Koha.pm @@ -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.041"; +$VERSION = "3.23.00.042"; sub version { return $VERSION; diff --git a/installer/data/mysql/atomicupdate/bug_xxxx-change_new_to_new_status.sql b/installer/data/mysql/atomicupdate/bug_xxxx-change_new_to_new_status.sql deleted file mode 100644 index 1f1711d820..0000000000 --- a/installer/data/mysql/atomicupdate/bug_xxxx-change_new_to_new_status.sql +++ /dev/null @@ -1,3 +0,0 @@ -ALTER TABLE items CHANGE new new_status VARCHAR(32) NULL; -ALTER TABLE deleteditems CHANGE new new_status VARCHAR(32) NULL; -UPDATE systempreferences SET value=REPLACE(value, '"items.new"', '"items.new_status"') WHERE variable="automatic_item_modification_by_age_configuration"; diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index 22e86fc11a..45c293295c 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -12050,6 +12050,24 @@ if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) { SetVersion($DBversion); } +$DBversion = "3.23.00.042"; +if ( C4::Context->preference("Version") < TransformToNum($DBversion) ) { + + $dbh->do(q{ + ALTER TABLE items CHANGE new new_status VARCHAR(32) NULL; + }); + $dbh->do(q{ + ALTER TABLE deleteditems CHANGE new new_status VARCHAR(32) NULL; + }); + $dbh->do(q{ + UPDATE systempreferences SET value=REPLACE(value, '"items.new"', '"items.new_status"') WHERE variable="automatic_item_modification_by_age_configuration"; + }); + + print "Upgrade to $DBversion done (Bug 16004 - Replace items.new with items.new_status)\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. -- 2.39.5