Lines 3133-3138
CREATE TABLE `itemtypes` (
Link Here
|
3133 |
`sip_media_type` varchar(3) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'SIP2 protocol media type for this itemtype', |
3133 |
`sip_media_type` varchar(3) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'SIP2 protocol media type for this itemtype', |
3134 |
`hideinopac` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'Hide the item type from the search options in OPAC', |
3134 |
`hideinopac` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'Hide the item type from the search options in OPAC', |
3135 |
`searchcategory` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Group this item type with others with the same value on OPAC search options', |
3135 |
`searchcategory` varchar(80) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Group this item type with others with the same value on OPAC search options', |
|
|
3136 |
`automatic_checkin` tinyint(1) NOT NULL DEFAULT 0, -- 1 if automatic checkin is enabled for items of this type |
3136 |
PRIMARY KEY (`itemtype`), |
3137 |
PRIMARY KEY (`itemtype`), |
3137 |
UNIQUE KEY `itemtype` (`itemtype`), |
3138 |
UNIQUE KEY `itemtype` (`itemtype`), |
3138 |
KEY `itemtypes_ibfk_1` (`parent_type`), |
3139 |
KEY `itemtypes_ibfk_1` (`parent_type`), |
3139 |
- |
|
|