> It would be nice to be able to define charsets for columns like this: ```php #[Entity] class User { #[Column(type: 'primary')] private int $id; #[Column(type: 'string', name: 'username', charset: 'latin1', collation: 'latin1_bin')] private string $email; } ``` _Originally posted by @ardabeyazoglu in https://github.com/cycle/orm/discussions/370_