2
0
forked from Wavyzz/dolibarr

Merge pull request #7201 from atm-florian/dev_extrafields_table_uniformisation

NEW new columns into extrafields table to get update create information
This commit is contained in:
Laurent Destailleur
2017-07-25 20:04:50 +02:00
committed by GitHub
3 changed files with 42 additions and 8 deletions

View File

@@ -37,5 +37,9 @@ create table llx_extrafields
param text, -- extra parameters to define possible values of field
list integer DEFAULT 0, -- list of values for field that are combo lists
langs varchar(24), -- example: fileofmymodule@mymodule
ishidden integer DEFAULT 0 -- ??? example of use case ???
ishidden integer DEFAULT 0, -- Can be foreign key of external system
fk_user_author integer, -- user making creation
fk_user_modif integer, -- user making last change
datec datetime, -- date de creation
tms timestamp
)ENGINE=innodb;