Bug 8236: DBRev 3.21.00.037
authorTomas Cohen Arazi <tomascohen@theke.io>
Mon, 19 Oct 2015 17:36:26 +0000 (14:36 -0300)
committerTomas Cohen Arazi <tomascohen@theke.io>
Mon, 19 Oct 2015 17:37:32 +0000 (14:37 -0300)
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
Koha.pm
installer/data/mysql/atomicupdate/bug_8236-add-overduesblockrenewing.sql [deleted file]
installer/data/mysql/atomicupdate/bug_8236-add-restrictionblockrenewing.sql [deleted file]
installer/data/mysql/updatedatabase.pl

diff --git a/Koha.pm b/Koha.pm
index df43c93..d4f5f8b 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.21.00.036";
+$VERSION = "3.21.00.037";
 
 sub version {
     return $VERSION;
diff --git a/installer/data/mysql/atomicupdate/bug_8236-add-overduesblockrenewing.sql b/installer/data/mysql/atomicupdate/bug_8236-add-overduesblockrenewing.sql
deleted file mode 100644 (file)
index 72f5406..0000000
+++ /dev/null
@@ -1 +0,0 @@
-INSERT INTO systempreferences (variable,value,explanation,options,type) VALUES ('OverduesBlockRenewing','allow','If any of a patron checked out documents is late, should renewal be allowed, blocked only on overdue items or blocked on whatever checked out document','allow|blockitem|block','Choice');
\ No newline at end of file
diff --git a/installer/data/mysql/atomicupdate/bug_8236-add-restrictionblockrenewing.sql b/installer/data/mysql/atomicupdate/bug_8236-add-restrictionblockrenewing.sql
deleted file mode 100644 (file)
index 4d3e014..0000000
+++ /dev/null
@@ -1 +0,0 @@
-INSERT INTO systempreferences (variable,value,explanation,options,type) VALUES ('RestrictionBlockRenewing','0','If patron is restricted, should renewal be allowed or blocked',NULL,'YesNo');
\ No newline at end of file
index e6135cd..14c3547 100755 (executable)
@@ -11106,6 +11106,20 @@ if ( CheckVersion($DBversion) ) {
    SetVersion($DBversion);
 }
 
+$DBversion = "3.21.00.037";
+if ( CheckVersion($DBversion) ) {
+   $dbh->do(q{
+       INSERT IGNORE INTO systempreferences (variable,value,explanation,options,type)
+       VALUES ('OverduesBlockRenewing','allow','If any of a patron checked out documents is late, should renewal be allowed, blocked only on overdue items or blocked on whatever checked out document','allow|blockitem|block','Choice')
+   });
+   $dbh->do(q{
+       INSERT IGNORE INTO systempreferences (variable,value,explanation,options,type)
+       VALUES ('RestrictionBlockRenewing','0','If patron is restricted, should renewal be allowed or blocked',NULL,'YesNo')
+    });
+   print "Upgrade to $DBversion done (Bug 8236: Prevent renewing if overdue or restriction)\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.