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;