Add column "fk_parent_line" to llx_mrp_mo

This commit is contained in:
atm-lena
2022-02-02 15:15:22 +01:00
parent 35ac8923dd
commit d6ff551702
2 changed files with 5 additions and 2 deletions

View File

@@ -94,3 +94,5 @@ CREATE TABLE llx_stock_mouvement_extrafields (
fk_object integer NOT NULL,
import_key varchar(14)
)ENGINE=innodb;
ALTER TABLE llx_mrp_mo ADD COLUMN fk_parent_line integer;

View File

@@ -40,6 +40,7 @@ CREATE TABLE llx_mrp_mo(
date_end_planned datetime,
fk_bom integer,
fk_project integer,
last_main_doc varchar(255)
last_main_doc varchar(255),
fk_parent_line integer
-- END MODULEBUILDER FIELDS
) ENGINE=innodb;