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

(-)a/installer/data/mysql/atomicupdate/bug-12993_DB-field-itemtypes.gstrate.sql (+1 lines)
Line 0 Link Here
1
ALTER TABLE itemtypes ADD COLUMN gstrate decimal(6,4) DEFAULT NULL AFTER rentalcharge;
(-)a/installer/data/mysql/kohastructure.sql (-1 / +1 lines)
Lines 1275-1280 CREATE TABLE `itemtypes` ( -- defines the item types Link Here
1275
  itemtype varchar(10) NOT NULL default '', -- unique key, a code associated with the item type
1275
  itemtype varchar(10) NOT NULL default '', -- unique key, a code associated with the item type
1276
  description mediumtext, -- a plain text explanation of the item type
1276
  description mediumtext, -- a plain text explanation of the item type
1277
  rentalcharge double(16,4) default NULL, -- the amount charged when this item is checked out/issued
1277
  rentalcharge double(16,4) default NULL, -- the amount charged when this item is checked out/issued
1278
  gstrate decimal(6,4)  default NULL, -- default gst rate to use when ordering this item type
1278
  notforloan smallint(6) default NULL, -- 1 if the item is not for loan, 0 if the item is available for loan
1279
  notforloan smallint(6) default NULL, -- 1 if the item is not for loan, 0 if the item is available for loan
1279
  imageurl varchar(200) default NULL, -- URL for the item type icon
1280
  imageurl varchar(200) default NULL, -- URL for the item type icon
1280
  summary text, -- information from the summary field, may include HTML
1281
  summary text, -- information from the summary field, may include HTML
1281
- 

Return to bug 12993