Lines 920-925
CREATE TABLE `items` ( -- holdings/item information
Link Here
|
920 |
DROP TABLE IF EXISTS `itemtypes`; |
920 |
DROP TABLE IF EXISTS `itemtypes`; |
921 |
CREATE TABLE `itemtypes` ( -- defines the item types |
921 |
CREATE TABLE `itemtypes` ( -- defines the item types |
922 |
itemtype varchar(10) NOT NULL default '', -- unique key, a code associated with the item type |
922 |
itemtype varchar(10) NOT NULL default '', -- unique key, a code associated with the item type |
|
|
923 |
parent_type varchar(10) NULL default NULL, -- unique key, a code associated with the item type |
923 |
description LONGTEXT, -- a plain text explanation of the item type |
924 |
description LONGTEXT, -- a plain text explanation of the item type |
924 |
rentalcharge decimal(28,6) default NULL, -- the amount charged when this item is checked out/issued |
925 |
rentalcharge decimal(28,6) default NULL, -- the amount charged when this item is checked out/issued |
925 |
rentalcharge_daily decimal(28,6) default NULL, -- the amount charged for each day between checkout date and due date |
926 |
rentalcharge_daily decimal(28,6) default NULL, -- the amount charged for each day between checkout date and due date |
Lines 935-940
CREATE TABLE `itemtypes` ( -- defines the item types
Link Here
|
935 |
hideinopac tinyint(1) NOT NULL DEFAULT 0, -- Hide the item type from the search options in OPAC |
936 |
hideinopac tinyint(1) NOT NULL DEFAULT 0, -- Hide the item type from the search options in OPAC |
936 |
searchcategory varchar(80) default NULL, -- Group this item type with others with the same value on OPAC search options |
937 |
searchcategory varchar(80) default NULL, -- Group this item type with others with the same value on OPAC search options |
937 |
PRIMARY KEY (`itemtype`), |
938 |
PRIMARY KEY (`itemtype`), |
|
|
939 |
FOREIGN KEY (parent_type) REFERENCES itemtypes(itemtype) ON UPDATE CASCADE ON DELETE CASCADE, |
938 |
UNIQUE KEY `itemtype` (`itemtype`) |
940 |
UNIQUE KEY `itemtype` (`itemtype`) |
939 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
941 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
940 |
|
942 |
|
941 |
- |
|
|