Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Schema
: Remove collation from blob field
Column defined as mediumblob with COLLATE utf8mb4_unicode_ci, which is the root cause of the issue. BLOB (Binary Large Object) data types don't support collations because they are meant to store binary data (i.e., raw bytes), which is not interpreted as text.
- Loading branch information