|
Lines 5611-5616
CREATE TABLE `search_field` (
Link Here
|
| 5611 |
`staff_client` tinyint(1) NOT NULL DEFAULT 1, |
5611 |
`staff_client` tinyint(1) NOT NULL DEFAULT 1, |
| 5612 |
`opac` tinyint(1) NOT NULL DEFAULT 1, |
5612 |
`opac` tinyint(1) NOT NULL DEFAULT 1, |
| 5613 |
`mandatory` tinyint(1) DEFAULT NULL COMMENT 'if marked this field is not editable or removable', |
5613 |
`mandatory` tinyint(1) DEFAULT NULL COMMENT 'if marked this field is not editable or removable', |
|
|
5614 |
`authorised_value_category` varchar(32) DEFAULT NULL COMMENT 'link to authorised value category', |
| 5614 |
PRIMARY KEY (`id`), |
5615 |
PRIMARY KEY (`id`), |
| 5615 |
UNIQUE KEY `name` (`name`(191)) |
5616 |
UNIQUE KEY `name` (`name`(191)) |
| 5616 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
5617 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
| 5617 |
- |
|
|