! -> Note
$ -> Affected files
+25_Apr-2009 Joe Hunt
+! Removed obsolete field 'included_in_price' from table 'Tax_group_items' in en_US-demo.sql.
+$ /sql/en_US-demo.sql
+ /sql/alter2.2.sql
+
24-Apr-2009 Janusz Dobrowolski
+ Added inactive records support.
$ /admin/payment_terms.php
ALTER TABLE `0_item_tax_types` ADD COLUMN `inactive` tinyint(1) NOT NULL default '0';
ALTER TABLE `0_tax_types` ADD COLUMN `inactive` tinyint(1) NOT NULL default '0';
ALTER TABLE `0_tax_groups` ADD COLUMN `inactive` tinyint(1) NOT NULL default '0';
+ALTER TABLE `0_tax_group_items` DROP COLUMN `included_in_price`;
`tax_group_id` int(11) NOT NULL default '0',
`tax_type_id` int(11) NOT NULL default '0',
`rate` double NOT NULL default '0',
- `included_in_price` tinyint(1) NOT NULL default '0',
PRIMARY KEY (`tax_group_id`,`tax_type_id`)
) TYPE=InnoDB ;