Lines 1274-1280
DROP TABLE IF EXISTS `itemtypes`;
Link Here
|
1274 |
CREATE TABLE `itemtypes` ( -- defines the item types |
1274 |
CREATE TABLE `itemtypes` ( -- defines the item types |
1275 |
itemtype varchar(10) NOT NULL default '', -- unique key, a code associated with the item type |
1275 |
itemtype varchar(10) NOT NULL default '', -- unique key, a code associated with the item type |
1276 |
description mediumtext, -- a plain text explanation of the item type |
1276 |
description mediumtext, -- a plain text explanation of the item type |
1277 |
rentalcharge double(16,4) default NULL, -- the amount charged when this item is checked out/issued |
1277 |
rentalcharge decimal(28,6) default NULL, -- the amount charged when this item is checked out/issued |
|
|
1278 |
defaultreplacecost decimal(28,6) default NULL, -- default replacement cost |
1279 |
processfee decimal(28,6) default NULL, -- default text be recorded in the column note when the processing fee is applied |
1278 |
notforloan smallint(6) default NULL, -- 1 if the item is not for loan, 0 if the item is available for loan |
1280 |
notforloan smallint(6) default NULL, -- 1 if the item is not for loan, 0 if the item is available for loan |
1279 |
imageurl varchar(200) default NULL, -- URL for the item type icon |
1281 |
imageurl varchar(200) default NULL, -- URL for the item type icon |
1280 |
summary text, -- information from the summary field, may include HTML |
1282 |
summary text, -- information from the summary field, may include HTML |
1281 |
- |
|
|