From bffe2dd7c3ca3f35a4000d8eb520b8a24e377af2 Mon Sep 17 00:00:00 2001 From: fBrignoli Date: Mon, 21 May 2012 15:56:42 +0000 Subject: [PATCH] [-] Installer : Decimal replaces Float --- install-dev/data/db_structure.sql | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/install-dev/data/db_structure.sql b/install-dev/data/db_structure.sql index 3fb655b39..1f187457a 100644 --- a/install-dev/data/db_structure.sql +++ b/install-dev/data/db_structure.sql @@ -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; -