dolibarr/dev/dbmodel/emulate_oscommerce/llx_osc_order.sql

26 lines
1.1 KiB
MySQL
Raw Normal View History

-- ===================================================================
-- Copyright (C) 2005 Laurent Destailleur <eldy@users.sourceforge.net>
--
-- 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 3 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
2011-08-03 03:03:45 +02:00
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
--
-- ===================================================================
2006-12-12 21:10:45 +01:00
CREATE TABLE llx_osc_order (
2012-09-27 23:43:58 +02:00
rowid integer NOT NULL default '0',
datem datetime default NULL,
2012-09-27 23:43:58 +02:00
fk_commande integer NOT NULL default '0',
PRIMARY KEY (rowid),
UNIQUE KEY fk_commande (fk_commande)
2012-09-27 23:43:58 +02:00
) ENGINE=InnoDB;