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