Bug 23309: Update DB
authorJonathan Druart <jonathan.druart@bugs.koha-community.org>
Thu, 8 Aug 2019 01:08:22 +0000 (20:08 -0500)
committerMartin Renvoize <martin.renvoize@ptfs-europe.com>
Thu, 15 Aug 2019 08:06:55 +0000 (09:06 +0100)
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
installer/data/mysql/atomicupdate/bug_23309.perl [new file with mode: 0644]
installer/data/mysql/kohastructure.sql

diff --git a/installer/data/mysql/atomicupdate/bug_23309.perl b/installer/data/mysql/atomicupdate/bug_23309.perl
new file mode 100644 (file)
index 0000000..9db4d07
--- /dev/null
@@ -0,0 +1,10 @@
+$DBversion = 'XXX'; # will be replaced by the RM
+if( CheckVersion( $DBversion ) ) {
+
+    $dbh->do(q|
+        ALTER TABLE marc_subfield_structure CHANGE COLUMN hidden hidden TINYINT(1) DEFAULT 8 NOT NULL;
+    |);
+    # Always end with this (adjust the bug info)
+    SetVersion( $DBversion );
+    print "Upgrade to $DBversion done (Bug 23309 - Can't add new subfields to bibliographic frameworks in strict mode)\n";
+}
index 5016b68c51dabcda855c1e46b2e7e80fb6cf4f31..f637d27c7716c0e595eb3b584d1b3838f0d102fe 100644 (file)
@@ -1049,7 +1049,7 @@ CREATE TABLE `marc_subfield_structure` (
   `authtypecode` varchar(20) default NULL,
   `value_builder` varchar(80) default NULL,
   `isurl` tinyint(1) default NULL,
-  `hidden` tinyint(1) default NULL,
+  `hidden` tinyint(1) NOT NULL default 8,
   `frameworkcode` varchar(4) NOT NULL default '',
   `seealso` varchar(1100) default NULL,
   `link` varchar(80) default NULL,