diff --git a/mysql/tables/Makefile b/mysql/tables/Makefile index 113714c6944..ba058de7c08 100644 --- a/mysql/tables/Makefile +++ b/mysql/tables/Makefile @@ -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 diff --git a/mysql/tables/drop.sql b/mysql/tables/drop.sql index 2f8f871b1e9..ce42c6faad8 100644 --- a/mysql/tables/drop.sql +++ b/mysql/tables/drop.sql @@ -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; diff --git a/mysql/tables/llx_cotisation.sql b/mysql/tables/llx_cotisation.sql new file mode 100644 index 00000000000..c5f06841a26 --- /dev/null +++ b/mysql/tables/llx_cotisation.sql @@ -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 +);