llx_entrepot.sql 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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. create table llx_entrepot
  21. (
  22. rowid integer AUTO_INCREMENT PRIMARY KEY,
  23. ref varchar(255) NOT NULL,
  24. datec datetime,
  25. tms timestamp DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  26. entity integer DEFAULT 1 NOT NULL, -- multi company id
  27. fk_project integer DEFAULT NULL, -- project associated to warehouse if any
  28. description text,
  29. lieu varchar(64), -- resume lieu situation
  30. address varchar(255),
  31. zip varchar(10),
  32. town varchar(50),
  33. fk_departement integer,
  34. fk_pays integer DEFAULT 0,
  35. phone varchar(20), -- phone number
  36. fax varchar(20), -- fax number
  37. barcode varchar(180) DEFAULT NULL, -- barcode
  38. fk_barcode_type integer DEFAULT NULL, -- barcode type
  39. warehouse_usage integer DEFAULT 1, -- 1=internal, 2=external (virtual warehouse or stock out of company)
  40. statut tinyint DEFAULT 1, -- 1 open, 0 close
  41. fk_user_author integer,
  42. model_pdf varchar(255),
  43. import_key varchar(14),
  44. fk_parent integer DEFAULT 0
  45. )ENGINE=innodb;