Lines 4133-4138
CREATE TABLE `itemtypes` (
Link Here
|
4133 |
`summary` mediumtext DEFAULT NULL COMMENT 'information from the summary field, may include HTML', |
4133 |
`summary` mediumtext DEFAULT NULL COMMENT 'information from the summary field, may include HTML', |
4134 |
`checkinmsg` varchar(255) DEFAULT NULL COMMENT 'message that is displayed when an item with the given item type is checked in', |
4134 |
`checkinmsg` varchar(255) DEFAULT NULL COMMENT 'message that is displayed when an item with the given item type is checked in', |
4135 |
`checkinmsgtype` char(16) NOT NULL DEFAULT 'message' COMMENT 'type (CSS class) for the checkinmsg, can be ''alert'' or ''message''', |
4135 |
`checkinmsgtype` char(16) NOT NULL DEFAULT 'message' COMMENT 'type (CSS class) for the checkinmsg, can be ''alert'' or ''message''', |
|
|
4136 |
`checkoutmsg` varchar(255) DEFAULT NULL COMMENT 'message that is displayed when an item with the given item type is checked out', |
4137 |
`checkoutmsgtype` char(16) NOT NULL DEFAULT 'message' COMMENT 'type (CSS class) for the checkoutmsg, can be ''alert'' or ''message''', |
4136 |
`sip_media_type` varchar(3) DEFAULT NULL COMMENT 'SIP2 protocol media type for this itemtype', |
4138 |
`sip_media_type` varchar(3) DEFAULT NULL COMMENT 'SIP2 protocol media type for this itemtype', |
4137 |
`hideinopac` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'Hide the item type from the search options in OPAC', |
4139 |
`hideinopac` tinyint(1) NOT NULL DEFAULT 0 COMMENT 'Hide the item type from the search options in OPAC', |
4138 |
`searchcategory` varchar(80) DEFAULT NULL COMMENT 'Group this item type with others with the same value on OPAC search options', |
4140 |
`searchcategory` varchar(80) DEFAULT NULL COMMENT 'Group this item type with others with the same value on OPAC search options', |
4139 |
- |
|
|