Fix: Error in building donation document

This commit is contained in:
Laurent Destailleur 2008-11-17 00:12:33 +00:00
parent 5604b3dc81
commit 6873e83144
2 changed files with 7 additions and 1 deletions

View File

@ -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);

View File

@ -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;