dolibarr/htdocs/install/mysql/tables/llx_cotisation.sql

31 lines
1.2 KiB
MySQL
Raw Normal View History

2002-12-28 22:05:13 +01:00
-- ===================================================================
-- Copyright (C) 2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
2002-12-28 22:05:13 +01:00
--
-- 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
2002-12-28 22:05:13 +01:00
-- (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:13:30 +02:00
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
2002-12-28 22:05:13 +01:00
--
-- ===================================================================
create table llx_cotisation
(
rowid integer AUTO_INCREMENT PRIMARY KEY,
tms timestamp,
datec datetime,
fk_adherent integer,
dateadh datetime,
datef date,
2002-12-28 22:11:21 +01:00
cotisation real,
2009-10-24 19:32:21 +02:00
fk_bank integer DEFAULT NULL,
2002-12-28 22:05:13 +01:00
note text
2011-02-24 10:57:02 +01:00
)ENGINE=innodb;