Correction [bugs #7292] : Il manque le champ fk_bank dans la table llx_cotisation

This commit is contained in:
Laurent Destailleur 2004-01-24 16:00:49 +00:00
parent d205ab4ce1
commit e6e80187a9
2 changed files with 1 additions and 1 deletions

View File

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

View File

@ -27,5 +27,6 @@ create table llx_cotisation
fk_adherent integer,
dateadh datetime,
cotisation real,
fk_bank int(11) default NULL,
note text
);