mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-10 19:41:26 +01:00
Add missing fields for css on extrafields
This commit is contained in:
@@ -379,3 +379,8 @@ ALTER TABLE llx_fichinter ADD COLUMN ref_client varchar(255) after ref_ext;
|
|||||||
ALTER TABLE llx_c_holiday_types ADD COLUMN sortorder smallint;
|
ALTER TABLE llx_c_holiday_types ADD COLUMN sortorder smallint;
|
||||||
|
|
||||||
ALTER TABLE llx_expedition MODIFY COLUMN ref_customer varchar(255);
|
ALTER TABLE llx_expedition MODIFY COLUMN ref_customer varchar(255);
|
||||||
|
|
||||||
|
ALTER TABLE llx_extrafields ADD COLUMN css varchar(128);
|
||||||
|
ALTER TABLE llx_extrafields ADD COLUMN cssview varchar(128);
|
||||||
|
ALTER TABLE llx_extrafields ADD COLUMN csslist varchar(128);
|
||||||
|
|
||||||
|
|||||||
@@ -40,6 +40,9 @@ create table llx_extrafields
|
|||||||
totalizable boolean DEFAULT FALSE, -- is extrafield totalizable on list
|
totalizable boolean DEFAULT FALSE, -- is extrafield totalizable on list
|
||||||
langs varchar(64), -- example: fileofmymodule@mymodule
|
langs varchar(64), -- example: fileofmymodule@mymodule
|
||||||
help text, -- to store help tooltip
|
help text, -- to store help tooltip
|
||||||
|
css varchar(128), -- to store css on create/update forms
|
||||||
|
cssview varchar(128), -- to store css on view form
|
||||||
|
csslist varchar(128), -- to store css on list
|
||||||
fk_user_author integer, -- user making creation
|
fk_user_author integer, -- user making creation
|
||||||
fk_user_modif integer, -- user making last change
|
fk_user_modif integer, -- user making last change
|
||||||
datec datetime, -- date de creation
|
datec datetime, -- date de creation
|
||||||
|
|||||||
Reference in New Issue
Block a user