1-- ===================================================================
2-- Copyright (C) 2004		Rodolphe Quiedeville	<rodolphe@quiedeville.org>
3-- Copyright (C) 2005-2012	Regis Houssin			<regis.houssin@inodbox.com>
4-- Copyright (C) 2007		Laurent Destailleur		<eldy@users.sourceforge.net>
5-- Copyright (C) 2010		Juanjo Menent			<jmenent@2byte.es>
6-- Copyright (C) 2013		Florian HENRY			<florian.henry@open-concept.pro>
7-- Copyright (C) 2015		Claudio Aschieri		<c.aschieri@19.coop>
8--
9-- This program is free software; you can redistribute it and/or modify
10-- it under the terms of the GNU General Public License as published by
11-- the Free Software Foundation; either version 3 of the License, or
12-- (at your option) any later version.
13--
14-- This program is distributed in the hope that it will be useful,
15-- but WITHOUT ANY WARRANTY; without even the implied warranty of
16-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17-- GNU General Public License for more details.
18--
19-- You should have received a copy of the GNU General Public License
20-- along with this program. If not, see <https://www.gnu.org/licenses/>.
21--
22-- ===================================================================
23
24create table llx_commande_fournisseurdet_extrafields
25(
26  rowid                     integer AUTO_INCREMENT PRIMARY KEY,
27  tms                       timestamp DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
28  fk_object                 integer NOT NULL,
29  import_key                varchar(14)
30) ENGINE=innodb;
31