The code from ./src/Db/Adapter/MysqlAdapter.php:700-707 in MysqlAdapter::dropForeigKey(...) at Lines 700-707, doesn't quote $constraint with MysqlAdapter::quoteColumnName(...).
As a result, dropping a foreign key constraint with whitespaces (which made me notice it), e.g. "i am a silly test", is not possible.
My current workaround is to quote the name with backticks, manually.
The code from ./src/Db/Adapter/MysqlAdapter.php:700-707 in
MysqlAdapter::dropForeigKey(...)at Lines 700-707, doesn't quote$constraintwithMysqlAdapter::quoteColumnName(...).As a result, dropping a foreign key constraint with whitespaces (which made me notice it), e.g. "
i am a silly test", is not possible.My current workaround is to quote the name with backticks, manually.