From 6873e8314413a65e19af2e296c38b4bad014e244 Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Mon, 17 Nov 2008 00:12:33 +0000 Subject: [PATCH] Fix: Error in building donation document --- mysql/migration/2.4.0-2.5.0.sql | 3 +++ mysql/tables/llx_don.sql | 5 ++++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/mysql/migration/2.4.0-2.5.0.sql b/mysql/migration/2.4.0-2.5.0.sql index 9f8ebdad166..265a3ef2f2a 100644 --- a/mysql/migration/2.4.0-2.5.0.sql +++ b/mysql/migration/2.4.0-2.5.0.sql @@ -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); diff --git a/mysql/tables/llx_don.sql b/mysql/tables/llx_don.sql index f8efce739aa..795a11f5746 100644 --- a/mysql/tables/llx_don.sql +++ b/mysql/tables/llx_don.sql @@ -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;