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