mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2026-01-03 23:52:24 +01:00
Fix add missing field
This commit is contained in:
@@ -124,3 +124,7 @@ ALTER TABLE llx_socpeople MODIFY poste varchar(255);
|
||||
ALTER TABLE llx_menu ADD COLUMN prefix varchar(255) NULL AFTER titre;
|
||||
|
||||
ALTER TABLE llx_chargesociales ADD COLUMN fk_user integer DEFAULT NULL;
|
||||
|
||||
|
||||
ALTER TABLE llx_fichinter ADD COLUMN last_main_doc varchar(255) AFTER model_pdf;
|
||||
ALTER TABLE llx_projet ADD COLUMN last_main_doc varchar(255) AFTER model_pdf;
|
||||
|
||||
@@ -53,6 +53,7 @@ CREATE TABLE llx_expensereport (
|
||||
integration_compta integer DEFAULT NULL, -- not used
|
||||
fk_bank_account integer DEFAULT NULL,
|
||||
model_pdf varchar(50) DEFAULT NULL,
|
||||
last_main_doc varchar(255), -- relative filepath+filename of last main generated document
|
||||
|
||||
fk_multicurrency integer,
|
||||
multicurrency_code varchar(255),
|
||||
|
||||
@@ -44,10 +44,11 @@ create table llx_projet
|
||||
--budget_days real, -- budget in days is sum of field planned_workload of tasks
|
||||
opp_amount double(24,8),
|
||||
budget_amount double(24,8),
|
||||
usage_opportunity integer DEFAULT 0, -- Set to 1 if project is used to follow an opportunity
|
||||
usage_task integer DEFAULT 1, -- Set to 1 if project is used to manage tasks and/or record timesheet
|
||||
usage_bill_time integer DEFAULT 0, -- Set to 1 if time spent must be converted into invoices
|
||||
usage_organize_event integer DEFAULT 0, -- Set to 1 if you want to use project to organize an event, receive attendees subscription
|
||||
usage_opportunity integer DEFAULT 0, -- Set to 1 if project is used to follow an opportunity
|
||||
usage_task integer DEFAULT 1, -- Set to 1 if project is used to manage tasks and/or record timesheet
|
||||
usage_bill_time integer DEFAULT 0, -- Set to 1 if time spent must be converted into invoices
|
||||
usage_organize_event integer DEFAULT 0, -- Set to 1 if you want to use project to organize an event, receive attendees subscription
|
||||
model_pdf varchar(255),
|
||||
last_main_doc varchar(255), -- relative filepath+filename of last main generated document
|
||||
import_key varchar(14) -- Import key
|
||||
)ENGINE=innodb;
|
||||
|
||||
Reference in New Issue
Block a user