dolibarr/mysql/tables/llx_user.sql

44 lines
1.5 KiB
MySQL
Raw Normal View History

2002-04-29 22:57:25 +02:00
-- ============================================================================
2003-08-04 20:19:15 +02:00
-- Copyright (C) 2001-2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
2002-04-29 22:57:25 +02:00
--
-- This program is free software; you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation; either version 2 of the License, or
-- (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with this program; if not, write to the Free Software
-- Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
--
2002-12-18 18:39:50 +01:00
-- $Id$
-- $Source$
--
2002-04-29 22:57:25 +02:00
-- ===========================================================================
create table llx_user
(
2002-04-30 12:44:42 +02:00
rowid integer AUTO_INCREMENT PRIMARY KEY,
datec datetime,
tms timestamp,
login varchar(8),
2002-12-18 18:39:50 +01:00
pass varchar(32),
2002-04-30 12:44:42 +02:00
name varchar(50),
firstname varchar(50),
code varchar(4),
email varchar(255),
2002-05-04 23:28:42 +02:00
admin smallint default 0,
2003-03-23 15:44:43 +01:00
webcal_login varchar(25),
2002-04-30 12:44:42 +02:00
module_comm smallint default 1,
module_compta smallint default 1,
2003-03-23 15:44:43 +01:00
fk_societe integer default 0,
2003-08-04 20:19:15 +02:00
fk_socpeople integer default 0,
2002-04-30 12:44:42 +02:00
note text,
2002-04-29 22:57:25 +02:00
2002-12-18 18:51:04 +01:00
UNIQUE INDEX(login)
2002-04-29 22:57:25 +02:00
);