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 1270-1275 CREATE TABLE `itemtypes` ( -- defines the item types Link Here
1270
  itemtype varchar(10) NOT NULL default '', -- unique key, a code associated with the item type
1270
  itemtype varchar(10) NOT NULL default '', -- unique key, a code associated with the item type
1271
  description mediumtext, -- a plain text explanation of the item type
1271
  description mediumtext, -- a plain text explanation of the item type
1272
  rentalcharge double(16,4) default NULL, -- the amount charged when this item is checked out/issued
1272
  rentalcharge double(16,4) default NULL, -- the amount charged when this item is checked out/issued
1273
  gstrate decimal(6,4)  default NULL, -- default gst rate to use when ordering this item type
1273
  notforloan smallint(6) default NULL, -- 1 if the item is not for loan, 0 if the item is available for loan
1274
  notforloan smallint(6) default NULL, -- 1 if the item is not for loan, 0 if the item is available for loan
1274
  imageurl varchar(200) default NULL, -- URL for the item type icon
1275
  imageurl varchar(200) default NULL, -- URL for the item type icon
1275
  summary text, -- information from the summary field, may include HTML
1276
  summary text, -- information from the summary field, may include HTML
1276
- 

Return to bug 12993