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