| [ PHPXref.com ] | [ Generated: Sun Jul 20 19:15:28 2008 ] | [ OverLook 4.02 ] |
| [ Index ] [ Variables ] [ Functions ] [ Classes ] [ Constants ] [ Statistics ] | ||
[Summary view] [Print] [Text view]
1 -- TABELLA CONTATTI 2 CREATE TABLE "AddressBook" ( 3 "idrub" serial , 4 "Nominativo" varchar(200) NOT NULL , 5 "N_fax" varchar(20) , 6 "nickname" varchar(100) , 7 "utente" varchar(100) NOT NULL , 8 "Referente" varchar(200) , 9 "N_tel" varchar(20) , 10 "Cellulare" varchar(30) , 11 "Note_addr" text , 12 "Indirizzo" text , 13 "N_civico" varchar(10) , 14 "Email" text , 15 "Comune" text , 16 "CAP" text , 17 "Provincia" text , 18 "Nazione" text , 19 "PIVA" varchar(20) , 20 "CodFiscale" varchar(20) , 21 "SendPredefined" smallint NOT NULL DEFAULT 1 , 22 "syncr" text 23 24 ); 25 26 -- TABELLA GRUPPI 27 CREATE TABLE "Group_AddressBook" ( 28 "group_id" serial , 29 "group_name" varchar(200) NOT NULL , 30 "group_list_private" text , 31 "group_list_public" text , 32 "utente" varchar(100) NOT NULL 33 ); 34 35 -- TABELLA UTENTI (tipo == 2) 36 CREATE TABLE "Utenti" ( 37 "utente" varchar(100) NOT NULL , 38 "Email" text NOT NULL , 39 "tipo" smallint NOT NULL DEFAULT 2 40 );
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
| [ Powered by PHPXref - Served by Debian GNU/Linux ] |