Gestion tel sur fiche user (Ajout patch lionel)

This commit is contained in:
Laurent Destailleur
2005-09-13 08:05:47 +00:00
parent 944df95f35
commit 00af2b9486
4 changed files with 64 additions and 15 deletions

View File

@@ -249,6 +249,9 @@ alter table llx_boxes add box_order smallint default 0 NOT NULL;
alter table llx_user drop column module_comm;
alter table llx_user drop column module_compta;
alter table llx_user add datelastaccess datetime;
alter table llx_user add office_phone varchar(20);
alter table llx_user add office_fax varchar(20);
alter table llx_user add user_mobile varchar(20);
alter table llx_user_rights add rowid integer AUTO_INCREMENT PRIMARY KEY;

View File

@@ -30,6 +30,9 @@ create table llx_user
name varchar(50),
firstname varchar(50),
code varchar(4),
office_phone varchar(20),
office_fax varchar(20),
user_mobile varchar(20),
email varchar(255),
admin smallint DEFAULT 0,
webcal_login varchar(25),