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

(-)a/installer/data/mysql/atomicupdate/bug_20912.sql (+1 lines)
Line 0 Link Here
1
ALTER TABLE itemtypes ADD COLUMN rental_charge_daily decimal(28,6) default NULL AFTER rentalcharge;
(-)a/installer/data/mysql/kohastructure.sql (-1 / +1 lines)
Lines 971-976 CREATE TABLE `itemtypes` ( -- defines the item types Link Here
971
  itemtype varchar(10) NOT NULL default '', -- unique key, a code associated with the item type
971
  itemtype varchar(10) NOT NULL default '', -- unique key, a code associated with the item type
972
  description LONGTEXT, -- a plain text explanation of the item type
972
  description LONGTEXT, -- a plain text explanation of the item type
973
  rentalcharge decimal(28,6) default NULL, -- the amount charged when this item is checked out/issued
973
  rentalcharge decimal(28,6) default NULL, -- the amount charged when this item is checked out/issued
974
  rental_charge_daily decimal(28,6) default NULL, -- the amount charged for each day between checkout date and due date
974
  defaultreplacecost decimal(28,6) default NULL, -- default replacement cost
975
  defaultreplacecost decimal(28,6) default NULL, -- default replacement cost
975
  processfee decimal(28,6) default NULL, -- default text be recorded in the column note when the processing fee is applied
976
  processfee decimal(28,6) default NULL, -- default text be recorded in the column note when the processing fee is applied
976
  notforloan smallint(6) default NULL, -- 1 if the item is not for loan, 0 if the item is available for loan
977
  notforloan smallint(6) default NULL, -- 1 if the item is not for loan, 0 if the item is available for loan
977
- 

Return to bug 20912