Fix: Error in building donation document
This commit is contained in:
parent
5604b3dc81
commit
6873e83144
@ -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_don_projet integer NULL;
|
||||||
alter table llx_don modify fk_user_valid 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_don_projet integer NULL, -- projet auquel est fait le don
|
||||||
fk_user_author integer NOT NULL,
|
fk_user_author integer NOT NULL,
|
||||||
fk_user_valid integer NULL,
|
fk_user_valid integer NULL,
|
||||||
note text
|
note text,
|
||||||
|
note_public text,
|
||||||
|
model_pdf varchar(50),
|
||||||
|
import_key varchar(14)
|
||||||
)type=innodb;
|
)type=innodb;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user