Update llx_product_lot.sql

This commit is contained in:
Laurent Destailleur 2021-09-17 11:47:42 +02:00 committed by GitHub
parent 61fddfd3b0
commit a0681d460d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -25,9 +25,9 @@ CREATE TABLE llx_product_lot (
eatby date DEFAULT NULL, -- Eatby date
sellby date DEFAULT NULL, -- Sellby date
eol_date datetime NULL,
manufacturing_date datetime NULL,
scrapping_date datetime NULL,
barcode varchar(180) DEFAULT NULL, -- barcode
manufacturing_date datetime NULL, -- date when first manufacturing of this lot has started
scrapping_date datetime NULL, -- date when we decided to scrap all products of this lot
barcode varchar(180) DEFAULT NULL, -- barcode
fk_barcode_type integer DEFAULT NULL, -- barcode type
datec datetime,
tms timestamp DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,