1-- ===================================================================
2-- Copyright (C) 2005 Rodolphe Quiedeville <rodolphe@quiedeville.org>
3--
4-- This program is free software; you can redistribute it and/or modify
5-- it under the terms of the GNU General Public License as published by
6-- the Free Software Foundation; either version 3 of the License, or
7-- (at your option) any later version.
8--
9-- This program is distributed in the hope that it will be useful,
10-- but WITHOUT ANY WARRANTY; without even the implied warranty of
11-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12-- GNU General Public License for more details.
13--
14-- You should have received a copy of the GNU General Public License
15-- along with this program. If not, see <https://www.gnu.org/licenses/>.
16--
17-- ===================================================================
18
19create table llx_prelevement_lignes
20(
21  rowid               integer AUTO_INCREMENT PRIMARY KEY,
22  fk_prelevement_bons integer,
23  fk_soc              integer NOT NULL,
24  statut              smallint DEFAULT 0,
25
26  client_nom          varchar(255),
27  amount              double(24,8) DEFAULT 0,
28  code_banque         varchar(128),
29  code_guichet        varchar(6),
30  number              varchar(255),
31  cle_rib             varchar(5),
32
33  note                text
34
35)ENGINE=innodb;
36