Lines 1398-1403
CREATE TABLE `search_field` (
Link Here
|
1398 |
`facet_order` TINYINT(4) DEFAULT NULL COMMENT 'the order place of the field in facet list if faceted', |
1398 |
`facet_order` TINYINT(4) DEFAULT NULL COMMENT 'the order place of the field in facet list if faceted', |
1399 |
`staff_client` tinyint(1) NOT NULL DEFAULT 1, |
1399 |
`staff_client` tinyint(1) NOT NULL DEFAULT 1, |
1400 |
`opac` tinyint(1) NOT NULL DEFAULT 1, |
1400 |
`opac` tinyint(1) NOT NULL DEFAULT 1, |
|
|
1401 |
`mandatory` tinyint(1) NULL DEFAULT NULL COMMENT 'if marked this field is not editable or removable', |
1401 |
PRIMARY KEY (`id`), |
1402 |
PRIMARY KEY (`id`), |
1402 |
UNIQUE KEY (`name` (191)) |
1403 |
UNIQUE KEY (`name` (191)) |
1403 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
1404 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
1404 |
- |
|
|