// Fix db.sql files for MySQL < 5.1

This commit is contained in:
rMalie
2011-12-22 21:03:55 +00:00
parent c49d3ea0b6
commit 1b94b642f6
2 changed files with 4 additions and 4 deletions

View File

@@ -1101,8 +1101,8 @@ CREATE TABLE `PREFIX_order_detail` (
`product_price` decimal(20,6) NOT NULL default '0.000000',
`reduction_percent` DECIMAL(10, 2) NOT NULL default '0.00',
`reduction_amount` DECIMAL(20, 6) NOT NULL default '0.000000',
`reduction_amount_tax_incl` FLOAT( 20.6 ) NOT NULL default '0.000000',
`reduction_amount_tax_excl` FLOAT( 20.6 ) NOT NULL default '0.000000',
`reduction_amount_tax_incl` FLOAT(20, 6) NOT NULL default '0.000000',
`reduction_amount_tax_excl` FLOAT(20, 6) NOT NULL default '0.000000',
`group_reduction` DECIMAL(10, 2) NOT NULL default '0.000000',
`product_quantity_discount` decimal(20,6) NOT NULL default '0.000000',
`product_ean13` varchar(13) default NULL,