Lines 876-881
CREATE TABLE `items` ( -- holdings/item information
Link Here
|
876 |
DROP TABLE IF EXISTS `itemtypes`; |
876 |
DROP TABLE IF EXISTS `itemtypes`; |
877 |
CREATE TABLE `itemtypes` ( -- defines the item types |
877 |
CREATE TABLE `itemtypes` ( -- defines the item types |
878 |
itemtype varchar(10) NOT NULL default '', -- unique key, a code associated with the item type |
878 |
itemtype varchar(10) NOT NULL default '', -- unique key, a code associated with the item type |
|
|
879 |
parent_type varchar(10) NULL default NULL, -- unique key, a code associated with the item type |
879 |
description LONGTEXT, -- a plain text explanation of the item type |
880 |
description LONGTEXT, -- a plain text explanation of the item type |
880 |
rentalcharge decimal(28,6) default NULL, -- the amount charged when this item is checked out/issued |
881 |
rentalcharge decimal(28,6) default NULL, -- the amount charged when this item is checked out/issued |
881 |
rentalcharge_daily decimal(28,6) default NULL, -- the amount charged for each day between checkout date and due date |
882 |
rentalcharge_daily decimal(28,6) default NULL, -- the amount charged for each day between checkout date and due date |
Lines 891-896
CREATE TABLE `itemtypes` ( -- defines the item types
Link Here
|
891 |
hideinopac tinyint(1) NOT NULL DEFAULT 0, -- Hide the item type from the search options in OPAC |
892 |
hideinopac tinyint(1) NOT NULL DEFAULT 0, -- Hide the item type from the search options in OPAC |
892 |
searchcategory varchar(80) default NULL, -- Group this item type with others with the same value on OPAC search options |
893 |
searchcategory varchar(80) default NULL, -- Group this item type with others with the same value on OPAC search options |
893 |
PRIMARY KEY (`itemtype`), |
894 |
PRIMARY KEY (`itemtype`), |
|
|
895 |
FOREIGN KEY (parent_type) REFERENCES itemtypes(itemtype) ON UPDATE CASCADE ON DELETE CASCADE, |
894 |
UNIQUE KEY `itemtype` (`itemtype`) |
896 |
UNIQUE KEY `itemtype` (`itemtype`) |
895 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
897 |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
896 |
|
898 |
|
897 |
- |
|
|