flarum.ERROR: PDOException: SQLSTATE[42000]: Syntax error or access violation: 1059 Identifier name 'flhe_flamarkt_discussion_taxonomy_term_discussion_id_term_id_primary' is too long in (hidden)/vendor/doctrine/dbal/lib/Doctrine/DBAL/Driver/PDOStatement.php:117
I have attemped this fix from the extension's original post:
/app/vendor/flamarkt/taxonomies/migrations/20210401_000200_create_discussion_term_table.php
// modfiy
$table->primary(['discussion_id', 'term_id']);
// to
$table->primary(['discussion_id', 'term_id'], 'custom_primary_index');
But no luck. Maybe I am unsure on how to update this change I've made?
EDIT: Well I believe I found the solution. I dropped the table from the database and the extension recreated it with the new name.
My new issue is that backoffice appears to have no CSS now?
EDIT2: It appears to be a conflict with dark mode extension.