From 4c798b78c1f7c8f8e204c4e085299cd1ca318884 Mon Sep 17 00:00:00 2001 From: Rodolphe Quiedeville Date: Thu, 13 Feb 2003 15:54:23 +0000 Subject: [PATCH] Ajout des tables boxes --- mysql/tables/Makefile | 8 +++++--- mysql/tables/drop.sql | 10 +++++++--- 2 files changed, 12 insertions(+), 6 deletions(-) diff --git a/mysql/tables/Makefile b/mysql/tables/Makefile index be80b451058..ac91a4ea61e 100644 --- a/mysql/tables/Makefile +++ b/mysql/tables/Makefile @@ -1,9 +1,6 @@ # # Copyright (C) 2001-2003 Rodolphe Quiedeville # -# $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 @@ -18,6 +15,9 @@ # 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$ +# MYSQL=mysql BASE=dolibarr OPTIONS=-f @@ -42,6 +42,8 @@ create: $(MYSQL) $(OPTIONS) $(BASE) < llx_bank_categ.sql $(MYSQL) $(OPTIONS) $(BASE) < llx_bank_class.sql $(MYSQL) $(OPTIONS) $(BASE) < llx_bookmark.sql + $(MYSQL) $(OPTIONS) $(BASE) < llx_boxes.sql + $(MYSQL) $(OPTIONS) $(BASE) < llx_boxes_def.sql $(MYSQL) $(OPTIONS) $(BASE) < llx_chargesociales.sql $(MYSQL) $(OPTIONS) $(BASE) < llx_compta.sql $(MYSQL) $(OPTIONS) $(BASE) < llx_compta_account.sql diff --git a/mysql/tables/drop.sql b/mysql/tables/drop.sql index d7da0c8b636..edb45307f8d 100644 --- a/mysql/tables/drop.sql +++ b/mysql/tables/drop.sql @@ -1,9 +1,6 @@ -- -- Copyright (C) 2001-2003 Rodolphe Quiedeville -- --- $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 @@ -18,6 +15,9 @@ -- 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$ +-- drop table if exists actioncomm; @@ -59,6 +59,10 @@ drop table if exists llx_bank_class; drop table if exists llx_bookmark; +drop table if exists llx_boxes; + +drop table if exists llx_boxes_def; + drop table if exists llx_chargesociales; drop table if exists llx_compta;