Fix: delete unused table

This commit is contained in:
Regis Houssin 2011-06-17 07:45:42 +00:00
parent ad0022b3e8
commit 1f7a11d012
2 changed files with 0 additions and 58 deletions

View File

@ -1,28 +0,0 @@
-- ============================================================================
-- Copyright (C) 2010 Regis Houssin <regis@dolibarr.fr>
--
-- 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$
-- ============================================================================
ALTER TABLE llx_element_rang ADD UNIQUE INDEX idx_element_rang_idx1 (fk_parent, parenttype, fk_child, childtype);
ALTER TABLE llx_element_rang ADD INDEX idx_element_rang_fk_parent (fk_parent);
-- Pas de contraite sur fk_parent et fk_child car pointe sur differentes tables

View File

@ -1,30 +0,0 @@
-- ============================================================================
-- Copyright (C) 2010 Regis Houssin <regis@dolibarr.fr>
--
-- 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_element_rang
(
rowid integer AUTO_INCREMENT PRIMARY KEY,
fk_parent integer NOT NULL,
parenttype varchar(16) NOT NULL,
fk_child integer NOT NULL,
childtype varchar(16) NOT NULL,
rang integer DEFAULT 0
) ENGINE=innodb;