From 8106eccd461f4ed108273562659ffe0620d7e5ea Mon Sep 17 00:00:00 2001 From: Rodolphe Quiedeville Date: Sat, 1 Feb 2003 18:42:34 +0000 Subject: [PATCH] *** empty log message *** --- mysql/tables/llx_facturedet.sql | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/mysql/tables/llx_facturedet.sql b/mysql/tables/llx_facturedet.sql index 3ba6dff0ded..174c41d0144 100644 --- a/mysql/tables/llx_facturedet.sql +++ b/mysql/tables/llx_facturedet.sql @@ -1,5 +1,5 @@ -- =================================================================== --- Copyright (C) 2001-2002 Rodolphe Quiedeville +-- Copyright (C) 2001-2003 Rodolphe Quiedeville -- -- 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 @@ -22,10 +22,10 @@ create table llx_facturedet ( rowid integer AUTO_INCREMENT PRIMARY KEY, - fk_facture integer, + fk_facture integer NOT NULL, fk_product integer, - datec datetime, - note varchar(255), - price real default 0 + desc text, + price real default 0, + qty smallint );