From 6ac4b20d3ab548621d6ffc8a931b947fdb3eb6f2 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Fri, 22 Jul 2016 17:21:42 +0000 Subject: [PATCH] Bug 11606 - DBRev 16.06.00.011 Signed-off-by: Kyle M Hall --- Koha.pm | 2 +- .../Bug_11606_Add_NovelistSelect_Staff_Prefs.sql | 2 -- installer/data/mysql/updatedatabase.pl | 12 ++++++++++++ 3 files changed, 13 insertions(+), 3 deletions(-) delete mode 100644 installer/data/mysql/atomicupdate/Bug_11606_Add_NovelistSelect_Staff_Prefs.sql diff --git a/Koha.pm b/Koha.pm index d109097014..a9a323bbb6 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 = "16.06.00.010"; +$VERSION = "16.06.00.011"; sub version { return $VERSION; diff --git a/installer/data/mysql/atomicupdate/Bug_11606_Add_NovelistSelect_Staff_Prefs.sql b/installer/data/mysql/atomicupdate/Bug_11606_Add_NovelistSelect_Staff_Prefs.sql deleted file mode 100644 index ee4f78cd2e..0000000000 --- a/installer/data/mysql/atomicupdate/Bug_11606_Add_NovelistSelect_Staff_Prefs.sql +++ /dev/null @@ -1,2 +0,0 @@ -INSERT IGNORE INTO systempreferences (variable,value,options,explanation,type) VALUES ('NovelistSelectStaffEnabled','0',NULL,'Enable Novelist Select content to the Staff Interface (requires that you have entered in a user profile and password, which can be seen in image links)','YesNo'), -('NovelistSelectStaffView','tab','tab|above|below','Where to display Novelist Select content','Choice'); diff --git a/installer/data/mysql/updatedatabase.pl b/installer/data/mysql/updatedatabase.pl index c84fc3b8c5..372d6e4e39 100755 --- a/installer/data/mysql/updatedatabase.pl +++ b/installer/data/mysql/updatedatabase.pl @@ -12774,6 +12774,18 @@ if ( CheckVersion($DBversion) ) { SetVersion($DBversion); } +$DBversion = '16.06.00.011'; +if ( CheckVersion($DBversion) ) { + $dbh->do(q{ + INSERT IGNORE INTO systempreferences (variable,value,options,explanation,type) VALUES + ('NovelistSelectStaffEnabled','0',NULL,'Enable Novelist Select content to the Staff Interface (requires that you have entered in a user profile and password, which can be seen in image links)','YesNo'), + ('NovelistSelectStaffView','tab','tab|above|below','Where to display Novelist Select content','Choice'); + }); + + print "Upgrade to $DBversion done (Bug 11606 - Novelist Select in Staff Client)\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