Fix: Wrong index name

This commit is contained in:
Laurent Destailleur 2009-10-28 18:46:13 +00:00
parent 565cb6bc09
commit 13a251eab4
2 changed files with 4 additions and 1 deletions

View File

@ -467,3 +467,6 @@ ALTER TABLE llx_c_methode_commande_fournisseur ADD UNIQUE INDEX uk_c_methode_com
ALTER TABLE llx_menu change user usertype integer NOT NULL default '0';
-- Rename index
ALTER TABLE llx_adherent_options DROP INDEX uk_adherent_options;
ALTER TABLE llx_adherent_options ADD INDEX idx_adherent_options (adhid);

View File

@ -19,4 +19,4 @@
-- $Id$
-- ===================================================================
ALTER TABLE llx_adherent_options ADD INDEX uk_adherent_options (adhid);
ALTER TABLE llx_adherent_options ADD INDEX idx_adherent_options (adhid);