Merge pull request #22402 from Humml87/Fix_#22307-Install-Step2

Fix #22307 Add comma to llx_product.sql
This commit is contained in:
Laurent Destailleur 2022-09-25 17:02:24 +02:00 committed by GitHub
commit 26bd74db8a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -107,6 +107,6 @@ create table llx_product
fk_project integer DEFAULT NULL, -- Used when product was generated by a project or is specifif 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)
fk_default_bom integer DEFAULT NULL
fk_default_bom integer DEFAULT NULL,
fk_default_workstation integer DEFAULT NULL
)ENGINE=innodb;