This website requires JavaScript.
Explore
Help
Sign In
kienan
/
AlternC
mirror of
https://github.com/kienanstewart/AlternC.git
Watch
1
Star
0
Fork
You've already forked AlternC
0
Code
Issues
Releases
Wiki
Activity
0b7ec2716e
AlternC
/
install
/
upgrades
/
3.5.0.3.sql
2 lines
47 B
MySQL
Raw
Normal View
History
Unescape
Escape
Do not re-create sub_domaines unique key compte New installations haven't had this unique key since 2014 (d9e24d9703bd9d3c99353fcb98bac880b25db5f7) 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.
2020-10-14 23:07:16 +00:00
DROP
INDEX
IF
EXISTS
compte
on
`
sub_domaines
`
;