View | Details | Raw Unified | Return to bug 6716
Collapse All | Expand All

(-)a/installer/data/mysql/kohastructure.sql (-3 / +2 lines)
Lines 770-776 CREATE TABLE `deleteditems` ( Link Here
770
  `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, -- date and time this item was last altered
770
  `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, -- date and time this item was last altered
771
  `location` varchar(80) default NULL, -- authorized value for the shelving location for this item (MARC21 952$c)
771
  `location` varchar(80) default NULL, -- authorized value for the shelving location for this item (MARC21 952$c)
772
  `permanent_location` varchar(80) default NULL, -- linked to the CART and PROC temporary locations feature, stores the permanent shelving location
772
  `permanent_location` varchar(80) default NULL, -- linked to the CART and PROC temporary locations feature, stores the permanent shelving location
773
  `onloan` date default NULL, -- defines if this item is currently checked out (1 for yes, 0 for no)
773
  `onloan` date default NULL, -- defines if item is checked out (NULL for not checked out, and checkout date for checked out)
774
  `cn_source` varchar(10) default NULL, -- classification source used on this item (MARC21 952$2)
774
  `cn_source` varchar(10) default NULL, -- classification source used on this item (MARC21 952$2)
775
  `cn_sort` varchar(30) default NULL, -- normalized form of the call number (MARC21 952$o) used for sorting
775
  `cn_sort` varchar(30) default NULL, -- normalized form of the call number (MARC21 952$o) used for sorting
776
  `ccode` varchar(10) default NULL, -- authorized value for the collection code associated with this item (MARC21 952$8)
776
  `ccode` varchar(10) default NULL, -- authorized value for the collection code associated with this item (MARC21 952$8)
Lines 1038-1044 CREATE TABLE `items` ( -- holdings/item information Link Here
1038
  `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, -- date and time this item was last altered
1038
  `timestamp` timestamp NOT NULL default CURRENT_TIMESTAMP on update CURRENT_TIMESTAMP, -- date and time this item was last altered
1039
  `location` varchar(80) default NULL, -- authorized value for the shelving location for this item (MARC21 952$c)
1039
  `location` varchar(80) default NULL, -- authorized value for the shelving location for this item (MARC21 952$c)
1040
  `permanent_location` varchar(80) default NULL, -- linked to the CART and PROC temporary locations feature, stores the permanent shelving location
1040
  `permanent_location` varchar(80) default NULL, -- linked to the CART and PROC temporary locations feature, stores the permanent shelving location
1041
  `onloan` date default NULL, -- defines if this item is currently checked out (1 for yes, 0 for no)
1041
  `onloan` date default NULL, -- defines if item is checked out (NULL for not checked out, and checkout date for checked out)
1042
  `cn_source` varchar(10) default NULL, -- classification source used on this item (MARC21 952$2)
1042
  `cn_source` varchar(10) default NULL, -- classification source used on this item (MARC21 952$2)
1043
  `cn_sort` varchar(30) default NULL,  -- normalized form of the call number (MARC21 952$o) used for sorting
1043
  `cn_sort` varchar(30) default NULL,  -- normalized form of the call number (MARC21 952$o) used for sorting
1044
  `ccode` varchar(10) default NULL, -- authorized value for the collection code associated with this item (MARC21 952$8)
1044
  `ccode` varchar(10) default NULL, -- authorized value for the collection code associated with this item (MARC21 952$8)
1045
- 

Return to bug 6716