*** empty log message ***

This commit is contained in:
Rodolphe Quiedeville 2002-12-28 21:05:13 +00:00
parent 967ecfd435
commit 96da6b628b
3 changed files with 36 additions and 0 deletions

View File

@ -34,6 +34,7 @@ create:
$(MYSQL) $(OPTIONS) $(BASE) < c_propalst.sql
$(MYSQL) $(OPTIONS) $(BASE) < c_stcomm.sql
$(MYSQL) $(OPTIONS) $(BASE) < c_typent.sql
$(MYSQL) $(OPTIONS) $(BASE) < llx_adherent.sql
$(MYSQL) $(OPTIONS) $(BASE) < llx_bank.sql
$(MYSQL) $(OPTIONS) $(BASE) < llx_bank_account.sql
$(MYSQL) $(OPTIONS) $(BASE) < llx_bank_categ.sql
@ -42,6 +43,7 @@ create:
$(MYSQL) $(OPTIONS) $(BASE) < llx_chargesociales.sql
$(MYSQL) $(OPTIONS) $(BASE) < llx_compta.sql
$(MYSQL) $(OPTIONS) $(BASE) < llx_compta_account.sql
$(MYSQL) $(OPTIONS) $(BASE) < llx_cotisation.sql
$(MYSQL) $(OPTIONS) $(BASE) < llx_don.sql
$(MYSQL) $(OPTIONS) $(BASE) < llx_don_projet.sql
$(MYSQL) $(OPTIONS) $(BASE) < llx_fa_pr.sql

View File

@ -43,6 +43,8 @@ drop table if exists c_stcomm;
drop table if exists c_typent ;
drop table if exists llx_adherent;
drop table if exists llx_bank;
drop table if exists llx_bank_account;
@ -59,6 +61,8 @@ drop table if exists llx_compta;
drop table if exists llx_compta_account;
drop table if exists llx_cotisation;
drop table if exists llx_don;
drop table if exists llx_don_projet;

View File

@ -0,0 +1,30 @@
-- ===================================================================
-- $Id$
-- $Source$
--
-- 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.
--
-- ===================================================================
create table llx_cotisation
(
rowid integer AUTO_INCREMENT PRIMARY KEY,
tms timestamp,
datec datetime,
fk_adherent integer,
dateadh datetime,
note text
);