Lines 5653-5658
CREATE TABLE `search_field` (
Link Here
|
5653 |
`staff_client` tinyint(1) NOT NULL DEFAULT 1, |
5653 |
`staff_client` tinyint(1) NOT NULL DEFAULT 1, |
5654 |
`opac` tinyint(1) NOT NULL DEFAULT 1, |
5654 |
`opac` tinyint(1) NOT NULL DEFAULT 1, |
5655 |
`mandatory` tinyint(1) DEFAULT NULL COMMENT 'if marked this field is not editable or removable', |
5655 |
`mandatory` tinyint(1) DEFAULT NULL COMMENT 'if marked this field is not editable or removable', |
|
|
5656 |
`authorised_value_category` varchar(32) DEFAULT NULL COMMENT 'link to authorised value category', |
5656 |
PRIMARY KEY (`id`), |
5657 |
PRIMARY KEY (`id`), |
5657 |
UNIQUE KEY `name` (`name`(191)) |
5658 |
UNIQUE KEY `name` (`name`(191)) |
5658 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
5659 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
5659 |
- |
|
|