Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix the partially quoted index name for MariaDB/MySQL
Previously the index name was generated with quoted table name and a number suffix like "`attachments`1", which MariaDB/MySQL does not support. As index names(table name + number suffix) probably will never be reserved words, this commit simply removes the quote of the table name part. This is initially to fix upgrade steps that create indexes via "indexes" file.
- Loading branch information