Lines 2729-2734
CREATE TABLE `deleteditems` (
Link Here
|
2729 |
`stocknumber` varchar(32) DEFAULT NULL COMMENT 'inventory number (MARC21 952$i)', |
2729 |
`stocknumber` varchar(32) DEFAULT NULL COMMENT 'inventory number (MARC21 952$i)', |
2730 |
`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.', |
2730 |
`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.', |
2731 |
`exclude_from_local_holds_priority` tinyint(1) DEFAULT NULL COMMENT 'Exclude this item from local holds priority', |
2731 |
`exclude_from_local_holds_priority` tinyint(1) DEFAULT NULL COMMENT 'Exclude this item from local holds priority', |
|
|
2732 |
`sort1` varchar(50) default NULL, |
2733 |
`sort2` varchar(50) default NULL, |
2732 |
PRIMARY KEY (`itemnumber`), |
2734 |
PRIMARY KEY (`itemnumber`), |
2733 |
KEY `delitembarcodeidx` (`barcode`), |
2735 |
KEY `delitembarcodeidx` (`barcode`), |
2734 |
KEY `delitemstocknumberidx` (`stocknumber`), |
2736 |
KEY `delitemstocknumberidx` (`stocknumber`), |
Lines 3701-3706
CREATE TABLE `items` (
Link Here
|
3701 |
`stocknumber` varchar(32) DEFAULT NULL COMMENT 'inventory number (MARC21 952$i)', |
3703 |
`stocknumber` varchar(32) DEFAULT NULL COMMENT 'inventory number (MARC21 952$i)', |
3702 |
`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.', |
3704 |
`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.', |
3703 |
`exclude_from_local_holds_priority` tinyint(1) DEFAULT NULL COMMENT 'Exclude this item from local holds priority', |
3705 |
`exclude_from_local_holds_priority` tinyint(1) DEFAULT NULL COMMENT 'Exclude this item from local holds priority', |
|
|
3706 |
`sort1` varchar(50) default NULL, |
3707 |
`sort2` varchar(50) default NULL, |
3704 |
PRIMARY KEY (`itemnumber`), |
3708 |
PRIMARY KEY (`itemnumber`), |
3705 |
UNIQUE KEY `itembarcodeidx` (`barcode`), |
3709 |
UNIQUE KEY `itembarcodeidx` (`barcode`), |
3706 |
KEY `itemstocknumberidx` (`stocknumber`), |
3710 |
KEY `itemstocknumberidx` (`stocknumber`), |
3707 |
- |
|
|