1-- ============================================================================
2-- Copyright (C) 2003-2006 Rodolphe Quiedeville	<rodolphe@quiedeville.org>
3-- Copyright (C) 2004-2017 Laurent Destailleur	<eldy@users.sourceforge.net>
4-- Copyright (C) 2012      Juanjo Menent		<jmenent@2byte.es>
5--
6-- This program is free software; you can redistribute it and/or modify
7-- it under the terms of the GNU General Public License as published by
8-- the Free Software Foundation; either version 3 of the License, or
9-- (at your option) any later version.
10--
11-- This program is distributed in the hope that it will be useful,
12-- but WITHOUT ANY WARRANTY; without even the implied warranty of
13-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14-- GNU General Public License for more details.
15--
16-- You should have received a copy of the GNU General Public License
17-- along with this program. If not, see <https://www.gnu.org/licenses/>.
18--
19-- ============================================================================
20
21create table llx_entrepot
22(
23  rowid           integer AUTO_INCREMENT PRIMARY KEY,
24  ref             varchar(255) NOT NULL,
25  datec           datetime,
26  tms             timestamp DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
27  entity          integer DEFAULT 1 NOT NULL,	-- multi company id
28  fk_project	  integer DEFAULT NULL,			-- project associated to warehouse if any
29  description     text,
30  lieu            varchar(64),					-- resume lieu situation
31  address         varchar(255),
32  zip             varchar(10),
33  town            varchar(50),
34  fk_departement  integer,
35  fk_pays         integer DEFAULT 0,
36  phone           varchar(20),                  -- phone number
37  fax             varchar(20),                  -- fax number
38  statut          tinyint DEFAULT 1,			-- 1 open, 0 close
39  fk_user_author  integer,
40  model_pdf       varchar(255),
41  import_key	    varchar(14),
42  fk_parent       integer DEFAULT 0
43)ENGINE=innodb;
44