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