DBrev Bug 16004 - Replace items.new with items.new_status
authorBrendan A Gallagher <brendan@bywatersolutions.com>
Thu, 31 Mar 2016 17:06:26 +0000 (17:06 +0000)
committerBrendan A Gallagher <brendan@bywatersolutions.com>
Thu, 31 Mar 2016 17:06:26 +0000 (17:06 +0000)
Signed-off-by: Brendan A Gallagher <brendan@bywatersolutions.com>
Koha.pm
installer/data/mysql/atomicupdate/bug_xxxx-change_new_to_new_status.sql [deleted file]
installer/data/mysql/updatedatabase.pl

diff --git a/Koha.pm b/Koha.pm
index 353e2eb..fc86716 100644 (file)
--- 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 (file)
index 1f1711d..0000000
+++ /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";
index 22e86fc..45c2932 100755 (executable)
@@ -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.