Add status on tasks

This commit is contained in:
Laurent Destailleur 2022-02-10 19:08:35 +01:00
parent 4da2056021
commit 3bc064ac55
2 changed files with 4 additions and 1 deletions

View File

@ -225,6 +225,8 @@ ALTER TABLE llx_facture_fourn ADD COLUMN fk_fac_rec_source integer;
ALTER TABLE llx_mrp_mo ADD COLUMN fk_parent_line integer;
ALTER TABLE llx_projet_task ADD COLUMN status integer DEFAULT 1 NOT NULL;
ALTER TABLE llx_product_attribute_value MODIFY COLUMN ref VARCHAR(180) NOT NULL;
ALTER TABLE llx_product_attribute_value MODIFY COLUMN value VARCHAR(255) NOT NULL;
ALTER TABLE llx_product_attribute_value ADD COLUMN position INTEGER NOT NULL DEFAULT 0;

View File

@ -44,5 +44,6 @@ create table llx_projet_task
note_public text,
rang integer DEFAULT 0,
model_pdf varchar(255),
import_key varchar(14) -- Import key
import_key varchar(14), -- Import key
status integer DEFAULT 1 NOT NULL
)ENGINE=innodb;