[-] Installer : Decimal replaces Float

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@15537 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
fBrignoli
2012-05-21 15:56:42 +00:00
parent 2e00c2ff00
commit 24c9ea257f
+2 -3
View File
@@ -1121,8 +1121,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` DECIMAL(20, 6) NOT NULL default '0.000000',
`reduction_amount_tax_excl` DECIMAL(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,
@@ -2414,4 +2414,3 @@ CREATE TABLE `PREFIX_module_preference` (
PRIMARY KEY (`id_carrier`, `id_tax_rules_group`, `id_shop`)
) ENGINE=ENGINE_TYPE DEFAULT CHARSET=utf8;