View | Details | Raw Unified | Return to bug 29632
Collapse All | Expand All

(-)a/installer/data/mysql/kohastructure.sql (-2 / +1 lines)
Lines 4606-4612 CREATE TABLE `search_field` ( Link Here
4606
  `id` int(11) NOT NULL AUTO_INCREMENT,
4606
  `id` int(11) NOT NULL AUTO_INCREMENT,
4607
  `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'the name of the field as it will be stored in the search engine',
4607
  `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'the name of the field as it will be stored in the search engine',
4608
  `label` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'the human readable name of the field, for display',
4608
  `label` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'the human readable name of the field, for display',
4609
  `type` enum('','string','date','number','boolean','sum','isbn','stdno','year') COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'what type of data this holds, relevant when storing it in the search engine',
4609
  `type` enum('','string','date','number','boolean','sum','isbn','stdno','year','callnumber') COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'what type of data this holds, relevant when storing it in the search engine',
4610
  `weight` decimal(5,2) DEFAULT NULL,
4610
  `weight` decimal(5,2) DEFAULT NULL,
4611
  `facet_order` tinyint(4) DEFAULT NULL COMMENT 'the order place of the field in facet list if faceted',
4611
  `facet_order` tinyint(4) DEFAULT NULL COMMENT 'the order place of the field in facet list if faceted',
4612
  `staff_client` tinyint(1) NOT NULL DEFAULT 1,
4612
  `staff_client` tinyint(1) NOT NULL DEFAULT 1,
4613
- 

Return to bug 29632