Mise jour des formats

This commit is contained in:
Rodolphe Quiedeville 2003-11-09 15:27:18 +00:00
parent 41f3933af5
commit 7347ee0479
4 changed files with 8 additions and 39 deletions

View File

@ -29,5 +29,5 @@ create table llx_entrepot
description text,
fk_user_author integer
) type=ISAM;
);

View File

@ -25,10 +25,12 @@ create table llx_product_stock
rowid integer AUTO_INCREMENT PRIMARY KEY,
tms timestamp,
fk_product integer NOT NULL,
fk_stock integer NOT NULL,
value integer,
fk_entrepot integer NOT NULL,
reel integer, -- stock réel
commande integer, -- stock commande
proposition integer, -- stock proposition commerciale
key(fk_product),
key(fk_stock)
key(fk_entrepot)
);

View File

@ -1,33 +0,0 @@
-- ============================================================================
-- Copyright (C) 2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
--
-- 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.
--
-- $Id$
-- $Source$
--
-- ============================================================================
create table llx_entrepot
(
rowid integer AUTO_INCREMENT PRIMARY KEY,
datec datetime,
tms timestamp,
label varchar(255),
description text,
fk_user_author integer
) type=INNODB;

View File

@ -26,12 +26,12 @@ create table llx_stock_mouvement
tms timestamp,
datem datetime,
fk_product integer NOT NULL,
fk_stock integer NOT NULL,
fk_entrepot integer NOT NULL,
value integer,
type_mouvement smallint,
fk_user_author integer,
key(fk_product),
key(fk_stock)
key(fk_entrepot)
);