diff --git a/pgsql/tables/c_actioncomm.sql b/pgsql/tables/c_actioncomm.sql deleted file mode 100644 index 5bb7b1f0da5..00000000000 --- a/pgsql/tables/c_actioncomm.sql +++ /dev/null @@ -1,31 +0,0 @@ --- ======================================================================== --- Copyright (C) 2001-2002 Rodolphe Quiedeville --- Copyright (C) 2002-2003 Éric Seigne --- --- $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 c_actioncomm -( - id SERIAL PRIMARY KEY, - libelle varchar(30), - todo int -); - - diff --git a/pgsql/tables/c_chargesociales.sql b/pgsql/tables/c_chargesociales.sql deleted file mode 100644 index 147ab9522f7..00000000000 --- a/pgsql/tables/c_chargesociales.sql +++ /dev/null @@ -1,31 +0,0 @@ --- ======================================================================== --- Copyright (C) 2001-2002 Rodolphe Quiedeville --- Copyright (C) 2002-2003 Éric Seigne --- --- 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 c_chargesociales -( - id SERIAL PRIMARY KEY, - libelle varchar(80), - deductible smallint NOT NULL default 0 -); - - - diff --git a/pgsql/tables/c_effectif.sql b/pgsql/tables/c_effectif.sql deleted file mode 100644 index 943a00a911b..00000000000 --- a/pgsql/tables/c_effectif.sql +++ /dev/null @@ -1,26 +0,0 @@ --- ======================================================================== --- $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 c_effectif -( - id SERIAL PRIMARY KEY, - libelle varchar(30) -); - diff --git a/pgsql/tables/c_paiement.sql b/pgsql/tables/c_paiement.sql deleted file mode 100644 index 58a05658bf0..00000000000 --- a/pgsql/tables/c_paiement.sql +++ /dev/null @@ -1,39 +0,0 @@ --- ======================================================================== --- Copyright (C) 2001-2002 Rodolphe Quiedeville --- Copyright (C) 2002-2003 Éric Seigne --- --- 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$ --- --- ======================================================================== - --- --- Type : --- --- 0 : entrée d'argent --- 1 : sortie d'argent --- 2 : entrée ou sortie d'argent - -create table c_paiement -( - id SERIAL PRIMARY KEY, - libelle varchar(30), - type smallint -); - - - diff --git a/pgsql/tables/c_pays.sql b/pgsql/tables/c_pays.sql deleted file mode 100644 index 2165c4da6f6..00000000000 --- a/pgsql/tables/c_pays.sql +++ /dev/null @@ -1,28 +0,0 @@ --- ======================================================================== --- $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 c_pays -( - id SERIAL PRIMARY KEY, - libelle varchar(25), - code char(2) NOT NULL -); - - diff --git a/pgsql/tables/c_propalst.sql b/pgsql/tables/c_propalst.sql deleted file mode 100644 index d374545d273..00000000000 --- a/pgsql/tables/c_propalst.sql +++ /dev/null @@ -1,26 +0,0 @@ --- =================================================================== --- $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 c_propalst -( - id SERIAL PRIMARY KEY, - label varchar(30) -); - diff --git a/pgsql/tables/c_stcomm.sql b/pgsql/tables/c_stcomm.sql deleted file mode 100644 index 191f9ae5967..00000000000 --- a/pgsql/tables/c_stcomm.sql +++ /dev/null @@ -1,26 +0,0 @@ --- ======================================================================== --- $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 c_stcomm -( - id SERIAL PRIMARY KEY, - libelle varchar(30) -); - diff --git a/pgsql/tables/c_typent.sql b/pgsql/tables/c_typent.sql deleted file mode 100644 index 30e47cb3275..00000000000 --- a/pgsql/tables/c_typent.sql +++ /dev/null @@ -1,25 +0,0 @@ --- ======================================================================== --- $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 c_typent -( - id SERIAL PRIMARY KEY, - libelle varchar(30) -);