From e6e80187a92be80b2086dabb01e93735b27df16d Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Sat, 24 Jan 2004 16:00:49 +0000 Subject: [PATCH] Correction [bugs #7292] : Il manque le champ fk_bank dans la table llx_cotisation --- mysql/tables/llx_adherent.sql | 1 - mysql/tables/llx_cotisation.sql | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/mysql/tables/llx_adherent.sql b/mysql/tables/llx_adherent.sql index 689c390aff6..485add63470 100644 --- a/mysql/tables/llx_adherent.sql +++ b/mysql/tables/llx_adherent.sql @@ -52,7 +52,6 @@ create table llx_adherent fk_user_valid integer NOT NULL, datefin datetime NOT NULL, -- date de fin de validité de la cotisation note text, - fk_bank int(11) default NULL, UNIQUE INDEX(login) ); diff --git a/mysql/tables/llx_cotisation.sql b/mysql/tables/llx_cotisation.sql index f4a9be1e454..f5ca7785ee5 100644 --- a/mysql/tables/llx_cotisation.sql +++ b/mysql/tables/llx_cotisation.sql @@ -27,5 +27,6 @@ create table llx_cotisation fk_adherent integer, dateadh datetime, cotisation real, + fk_bank int(11) default NULL, note text );