Skip to content
Snippets Groups Projects
Commit 6873e831 authored by Laurent Destailleur's avatar Laurent Destailleur
Browse files

Fix: Error in building donation document

parent 5604b3dc
No related branches found
No related tags found
No related merge requests found
......@@ -70,3 +70,6 @@ alter table llx_fichinterdet modify date datetime;
alter table llx_don modify fk_don_projet integer NULL;
alter table llx_don modify fk_user_valid integer NULL;
alter table llx_don add note_public text;
alter table llx_don add model_pdf varchar(50);
alter table llx_don add import_key varchar(14);
......@@ -40,5 +40,8 @@ create table llx_don
fk_don_projet integer NULL, -- projet auquel est fait le don
fk_user_author integer NOT NULL,
fk_user_valid integer NULL,
note text
note text,
note_public text,
model_pdf varchar(50),
import_key varchar(14)
)type=innodb;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment