Do not re-create sub_domaines unique key compte

New installations haven't had this unique key since 2014
(d9e24d9703) and only old
installations passing through 3.1.0~a would have had it
added.

Given that the unique key constraint was never dropped during
an AlternC upgrade, I think it should just be dropped here.

Re-creating is problematic when merged with other recent changes
because the length of both the key and column size are longer
than what MySQL/MariaDB support.
This commit is contained in:
Kienan Stewart 2020-10-14 19:07:16 -04:00 committed by Camille Lafitte
parent cd123f99f0
commit 20db4fceba
1 changed files with 1 additions and 3 deletions

View File

@ -1,3 +1 @@
alter table sub_domaines drop index compte;
alter table sub_domaines add UNIQUE (compte,domaine,sub,type,valeur,web_action);
DROP INDEX IF EXISTS compte on `sub_domaines`;