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