[Bug 8137] Checkout limit for all libraries
https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8137 --- Comment #129 from Fridolin Somers <fridolin.somers@biblibre.com> --- (In reply to Fridolin Somers from comment #125)
Ah small difference between atomic update and kohastructure.sql :
+ $dbh->do('ALTER TABLE circulation_rules ADD IF NOT EXISTS has_priority INT(1) DEFAULT 0');
+++ b/installer/data/mysql/kohastructure.sql @@ -1863,6 +1863,7 @@ CREATE TABLE `circulation_rules` ( `itemtype` varchar(10) DEFAULT NULL, `rule_name` varchar(32) NOT NULL, `rule_value` varchar(32) NOT NULL, + `has_priority` tinyint(4) DEFAULT NULL,
Its a boolean so looks like atomic update is correct and kohastructure.sql not
Nope, kohastructure.sql is correct for DEFAULT NULL so : tinyint(1) DEFAULT NULL -- You are receiving this mail because: You are watching all bug changes.
participants (1)
-
bugzilla-daemon@bugs.koha-community.org