Skip to content

Commit

Permalink
FIX: float is not int
Browse files Browse the repository at this point in the history
  • Loading branch information
altairis-noe committed Jan 28, 2025
1 parent 6b38b32 commit 758f139
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion htdocs/install/mysql/migration/21.0.0-22.0.0.sql
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,4 @@ ALTER TABLE llx_holiday_config ADD UNIQUE INDEX idx_holiday_config (entity, name

ALTER TABLE llx_societe_account ADD COLUMN ip varchar(250);

ALTER TABLE llx_product ADD COLUMN packaging integer DEFAULT NULL;
ALTER TABLE llx_product ADD COLUMN packaging float(24,8) DEFAULT NULL;
2 changes: 1 addition & 1 deletion htdocs/install/mysql/tables/llx_product.sql
Original file line number Diff line number Diff line change
Expand Up @@ -111,5 +111,5 @@ create table llx_product
fk_project integer DEFAULT NULL, -- Used when product was generated by a project or is specific to a project
mandatory_period tinyint DEFAULT 0, -- is used to signal to the user that the start and end dates are mandatory for this type of product the fk_product_type == 1 (service) (non-blocking action)
last_main_doc varchar(255),
packaging integer DEFAULT NULL
packaging float(24,8) DEFAULT NULL
)ENGINE=innodb;

0 comments on commit 758f139

Please sign in to comment.