From da01dfce6aadf938bb9f1d2b872b79effc8ce3ef Mon Sep 17 00:00:00 2001 From: Regis Houssin Date: Mon, 1 Feb 2010 11:09:09 +0000 Subject: [PATCH] Fix: move "energy" module in dolibarrmod --- .../mysql/tables/llx_energie_compteur.sql | 30 ------------------ .../tables/llx_energie_compteur_groupe.sql | 25 --------------- .../tables/llx_energie_compteur_releve.sql | 31 ------------------- .../mysql/tables/llx_energie_groupe.sql | 29 ----------------- 4 files changed, 115 deletions(-) delete mode 100644 htdocs/install/mysql/tables/llx_energie_compteur.sql delete mode 100644 htdocs/install/mysql/tables/llx_energie_compteur_groupe.sql delete mode 100644 htdocs/install/mysql/tables/llx_energie_compteur_releve.sql delete mode 100644 htdocs/install/mysql/tables/llx_energie_groupe.sql diff --git a/htdocs/install/mysql/tables/llx_energie_compteur.sql b/htdocs/install/mysql/tables/llx_energie_compteur.sql deleted file mode 100644 index 10d5fcf24de..00000000000 --- a/htdocs/install/mysql/tables/llx_energie_compteur.sql +++ /dev/null @@ -1,30 +0,0 @@ --- =================================================================== --- Copyright (C) 2005 Rodolphe Quiedeville --- --- 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$ --- =================================================================== - -create table llx_energie_compteur -( - rowid integer AUTO_INCREMENT PRIMARY KEY, - libelle varchar(50), - fk_energie integer NOT NULL, - datec datetime, - fk_user_author integer NOT NULL, - - note text -)type=innodb; diff --git a/htdocs/install/mysql/tables/llx_energie_compteur_groupe.sql b/htdocs/install/mysql/tables/llx_energie_compteur_groupe.sql deleted file mode 100644 index 11b383d373b..00000000000 --- a/htdocs/install/mysql/tables/llx_energie_compteur_groupe.sql +++ /dev/null @@ -1,25 +0,0 @@ --- =================================================================== --- Copyright (C) 2005 Rodolphe Quiedeville --- --- 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$ --- =================================================================== - -create table llx_energie_compteur_groupe -( - fk_energie_compteur integer NOT NULL, - fk_energie_groupe integer NOT NULL -)type=innodb; diff --git a/htdocs/install/mysql/tables/llx_energie_compteur_releve.sql b/htdocs/install/mysql/tables/llx_energie_compteur_releve.sql deleted file mode 100644 index af6e4a90bed..00000000000 --- a/htdocs/install/mysql/tables/llx_energie_compteur_releve.sql +++ /dev/null @@ -1,31 +0,0 @@ --- =================================================================== --- Copyright (C) 2005 Rodolphe Quiedeville --- --- 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$ --- =================================================================== - -create table llx_energie_compteur_releve -( - rowid integer AUTO_INCREMENT PRIMARY KEY, - fk_compteur integer NOT NULL, - date_releve datetime, - valeur real, - datec datetime, - fk_user_author integer NOT NULL, - - note text -)type=innodb; diff --git a/htdocs/install/mysql/tables/llx_energie_groupe.sql b/htdocs/install/mysql/tables/llx_energie_groupe.sql deleted file mode 100644 index 8ef72105395..00000000000 --- a/htdocs/install/mysql/tables/llx_energie_groupe.sql +++ /dev/null @@ -1,29 +0,0 @@ --- =================================================================== --- Copyright (C) 2005 Rodolphe Quiedeville --- --- 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$ --- =================================================================== - -create table llx_energie_groupe -( - rowid integer AUTO_INCREMENT PRIMARY KEY, - libelle varchar(100), - datec datetime, - fk_user_author integer NOT NULL, - - note text -)type=innodb;