From 21c66d3a86b3df0460205f6cbc8679483b202f2f Mon Sep 17 00:00:00 2001 From: Julian Maurice Date: Wed, 16 May 2018 13:54:26 +0200 Subject: [PATCH] Bug 11844: Update kohastructure.sql --- installer/data/mysql/kohastructure.sql | 1 + 1 file changed, 1 insertion(+) diff --git a/installer/data/mysql/kohastructure.sql b/installer/data/mysql/kohastructure.sql index f7970c051f..05ee835a19 100644 --- a/installer/data/mysql/kohastructure.sql +++ b/installer/data/mysql/kohastructure.sql @@ -3662,6 +3662,7 @@ CREATE TABLE `additional_fields` ( `name` varchar(255) NOT NULL DEFAULT '', -- name of the field `authorised_value_category` varchar(16) NOT NULL DEFAULT '', -- is an authorised value category `marcfield` varchar(16) NOT NULL DEFAULT '', -- contains the marc field to copied into the record + marcfield_mode ENUM('get', 'set') NOT NULL DEFAULT 'get', -- get value from MARC field or save value into MARC field `searchable` tinyint(1) NOT NULL DEFAULT '0', -- is the field searchable? PRIMARY KEY (`id`), UNIQUE KEY `fields_uniq` (`tablename` (191),`name` (191)) -- 2.14.2