Lines 2804-2809
CREATE TABLE `deleteditems` (
Link Here
|
2804 |
`stocknumber` varchar(32) DEFAULT NULL COMMENT 'inventory number (MARC21 952$i)', |
2804 |
`stocknumber` varchar(32) DEFAULT NULL COMMENT 'inventory number (MARC21 952$i)', |
2805 |
`new_status` varchar(32) DEFAULT NULL COMMENT '''new'' value, you can put whatever free-text information. This field is intented to be managed by the automatic_item_modification_by_age cronjob.', |
2805 |
`new_status` varchar(32) DEFAULT NULL COMMENT '''new'' value, you can put whatever free-text information. This field is intented to be managed by the automatic_item_modification_by_age cronjob.', |
2806 |
`exclude_from_local_holds_priority` tinyint(1) DEFAULT NULL COMMENT 'Exclude this item from local holds priority', |
2806 |
`exclude_from_local_holds_priority` tinyint(1) DEFAULT NULL COMMENT 'Exclude this item from local holds priority', |
|
|
2807 |
`sort1` varchar(50) default NULL, |
2808 |
`sort2` varchar(50) default NULL, |
2807 |
PRIMARY KEY (`itemnumber`), |
2809 |
PRIMARY KEY (`itemnumber`), |
2808 |
KEY `delitembarcodeidx` (`barcode`), |
2810 |
KEY `delitembarcodeidx` (`barcode`), |
2809 |
KEY `delitemstocknumberidx` (`stocknumber`), |
2811 |
KEY `delitemstocknumberidx` (`stocknumber`), |
Lines 4062-4067
CREATE TABLE `items` (
Link Here
|
4062 |
`stocknumber` varchar(32) DEFAULT NULL COMMENT 'inventory number (MARC21 952$i)', |
4064 |
`stocknumber` varchar(32) DEFAULT NULL COMMENT 'inventory number (MARC21 952$i)', |
4063 |
`new_status` varchar(32) DEFAULT NULL COMMENT '''new'' value, you can put whatever free-text information. This field is intented to be managed by the automatic_item_modification_by_age cronjob.', |
4065 |
`new_status` varchar(32) DEFAULT NULL COMMENT '''new'' value, you can put whatever free-text information. This field is intented to be managed by the automatic_item_modification_by_age cronjob.', |
4064 |
`exclude_from_local_holds_priority` tinyint(1) DEFAULT NULL COMMENT 'Exclude this item from local holds priority', |
4066 |
`exclude_from_local_holds_priority` tinyint(1) DEFAULT NULL COMMENT 'Exclude this item from local holds priority', |
|
|
4067 |
`sort1` varchar(50) default NULL, |
4068 |
`sort2` varchar(50) default NULL, |
4065 |
PRIMARY KEY (`itemnumber`), |
4069 |
PRIMARY KEY (`itemnumber`), |
4066 |
UNIQUE KEY `itembarcodeidx` (`barcode`), |
4070 |
UNIQUE KEY `itembarcodeidx` (`barcode`), |
4067 |
KEY `itemstocknumberidx` (`stocknumber`), |
4071 |
KEY `itemstocknumberidx` (`stocknumber`), |
4068 |
- |
|
|