From 9eda232e913daed758d49bf3952f3b6e4d0198c1 Mon Sep 17 00:00:00 2001 From: Rodolphe Quiedeville Date: Tue, 13 May 2003 12:45:04 +0000 Subject: [PATCH] Nouveau fichier --- mysql/tables/llx_paiementfourn.sql | 34 ++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 mysql/tables/llx_paiementfourn.sql diff --git a/mysql/tables/llx_paiementfourn.sql b/mysql/tables/llx_paiementfourn.sql new file mode 100644 index 00000000000..1f95242e255 --- /dev/null +++ b/mysql/tables/llx_paiementfourn.sql @@ -0,0 +1,34 @@ +-- =================================================================== +-- Copyright (C) 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 +-- 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_paiementfourn +( + rowid integer AUTO_INCREMENT PRIMARY KEY, + tms timestamp, + datec datetime, -- date de creation de l'enregistrement + fk_facture_fourn integer, -- facture + datep datetime, -- date de paiement + amount real default 0, -- montant + fk_user_author integer -- auteur + fk_paiement integer NOT NULL, -- moyen de paiement + num_paiement varchar(50), -- numéro de paiement (cheque) + note text +);