Lines 4135-4141
CREATE TABLE `itemtypes` (
Link Here
|
4135 |
`rentalcharge_hourly_calendar` tinyint(1) NOT NULL DEFAULT 1 COMMENT 'controls if the hourly rental fee is calculated directly or using finesCalendar', |
4135 |
`rentalcharge_hourly_calendar` tinyint(1) NOT NULL DEFAULT 1 COMMENT 'controls if the hourly rental fee is calculated directly or using finesCalendar', |
4136 |
`defaultreplacecost` decimal(28,6) DEFAULT NULL COMMENT 'default replacement cost', |
4136 |
`defaultreplacecost` decimal(28,6) DEFAULT NULL COMMENT 'default replacement cost', |
4137 |
`processfee` decimal(28,6) DEFAULT NULL COMMENT 'default text be recorded in the column note when the processing fee is applied', |
4137 |
`processfee` decimal(28,6) DEFAULT NULL COMMENT 'default text be recorded in the column note when the processing fee is applied', |
4138 |
`notforloan` smallint(6) DEFAULT NULL COMMENT '1 if the item is not for loan, 0 if the item is available for loan', |
4138 |
`notforloan` tinyint(1) NOT NULL DEFAULT 0 COMMENT '1 if the item is not for loan, 0 if the item is available for loan', |
4139 |
`imageurl` varchar(200) DEFAULT NULL COMMENT 'URL for the item type icon', |
4139 |
`imageurl` varchar(200) DEFAULT NULL COMMENT 'URL for the item type icon', |
4140 |
`summary` mediumtext DEFAULT NULL COMMENT 'information from the summary field, may include HTML', |
4140 |
`summary` mediumtext DEFAULT NULL COMMENT 'information from the summary field, may include HTML', |
4141 |
`checkinmsg` varchar(255) DEFAULT NULL COMMENT 'message that is displayed when an item with the given item type is checked in', |
4141 |
`checkinmsg` varchar(255) DEFAULT NULL COMMENT 'message that is displayed when an item with the given item type is checked in', |
4142 |
- |
|
|