Merge pull request #18838 from habibulilalbaab/patch-2

Fix Bug Query llx_product.sql
This commit is contained in:
Laurent Destailleur 2021-09-28 12:10:15 +02:00 committed by GitHub
commit dcddddd105
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -104,8 +104,7 @@ create table llx_product
fk_unit integer DEFAULT NULL,
price_autogen tinyint DEFAULT 0,
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)
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_project integer DEFAULT NULL -- Used when the product was generated by a project or is specific to a project
fk_default_bom integer DEFAULT NULL
)ENGINE=innodb;