Doc comment
This commit is contained in:
parent
350ef610e9
commit
439e4a483d
@ -20,7 +20,7 @@ create table llx_budget
|
|||||||
(
|
(
|
||||||
rowid integer AUTO_INCREMENT PRIMARY KEY,
|
rowid integer AUTO_INCREMENT PRIMARY KEY,
|
||||||
entity integer NOT NULL DEFAULT 1,
|
entity integer NOT NULL DEFAULT 1,
|
||||||
label varchar(255) NOT NULL,
|
label varchar(255) NOT NULL, -- For example 'Global budget for year' or 'Budget for each project'
|
||||||
status integer,
|
status integer,
|
||||||
note text,
|
note text,
|
||||||
date_start date,
|
date_start date,
|
||||||
|
|||||||
@ -20,7 +20,7 @@ create table llx_budget_lines
|
|||||||
(
|
(
|
||||||
rowid integer AUTO_INCREMENT PRIMARY KEY,
|
rowid integer AUTO_INCREMENT PRIMARY KEY,
|
||||||
fk_budget integer NOT NULL,
|
fk_budget integer NOT NULL,
|
||||||
fk_project_ids varchar(255) NOT NULL, -- 'IDS:x,y' = List of project ids related to this budget. If budget is dedicated to projects not yet started, we recommand to create a project "Projects to come". 'FILTER:x=y' = Can also be a dynamic rule to select projects.
|
fk_project_ids varchar(255) NOT NULL, -- 'IDS:x,y' = List of project ids related to this budget. If budget is dedicated to projects not yet started, we recommand to create a project "Projects to come". 'FILTER:ref=*ABC' = Can also be a dynamic rule to select projects.
|
||||||
amount double(24,8) NOT NULL,
|
amount double(24,8) NOT NULL,
|
||||||
datec datetime,
|
datec datetime,
|
||||||
tms timestamp,
|
tms timestamp,
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user