From 2d0c6cd7b748496b449845d695c3f6084a2a4ff1 Mon Sep 17 00:00:00 2001 From: jlb Date: Wed, 22 Jan 2003 17:50:46 +0000 Subject: [PATCH] passage du champ annif en champ naiss rajout d'un champ public pour valider que l'utilisateur est d'accord pour que certaines informations soient affichees sur une liste publique --- mysql/tables/llx_adherent.sql | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mysql/tables/llx_adherent.sql b/mysql/tables/llx_adherent.sql index b72e1762919..e31189730b4 100644 --- a/mysql/tables/llx_adherent.sql +++ b/mysql/tables/llx_adherent.sql @@ -30,6 +30,7 @@ create table llx_adherent rowid integer AUTO_INCREMENT PRIMARY KEY, tms timestamp, statut smallint NOT NULL DEFAULT 0, + public smallint NOT NULL DEFAULT 0, -- certain champ de la fiche sont ils public ou pas ? fk_adherent_type smallint, morphy enum('mor','phy') NOT NULL, -- personne morale / personne physique datevalid datetime, -- date de validation @@ -44,7 +45,7 @@ create table llx_adherent email varchar(255), login varchar(50), -- login utilise pour editer sa fiche pass varchar(50), -- pass utilise pour editer sa fiche - annif date, -- date d'anniversaire + naiss date, -- date de naissance photo varchar(255), -- url vers la photo de l'adherent fk_user_author integer NOT NULL, fk_user_mod integer NOT NULL,