Is there something special I need to set in Expose...
# exposed
m
Is there something special I need to set in Exposed to store UTF8? I’m using MySQL 5.7, and have the following table:
Copy code
+-------------------+--------------+--------------------+------+-----+---------+-------+---------------------------------+---------+
| Field             | Type         | Collation          | Null | Key | Default | Extra | Privileges                      | Comment |
+-------------------+--------------+--------------------+------+-----+---------+-------+---------------------------------+---------+
| id                | binary(16)   | NULL               | NO   | PRI | NULL    |       | select,insert,update,references |         |
| fName             | varchar(256) | utf8mb4_general_ci | NO   |     | NULL    |       | select,insert,update,references |         |
| lName             | varchar(256) | utf8mb4_general_ci | NO   |     | NULL    |       | select,insert,update,references |         |
| email             | varchar(256) | utf8mb4_general_ci | NO   | UNI | NULL    |       | select,insert,update,references |         |
| licenseExpiration | datetime(6)  | NULL               | NO   |     | NULL    |       | select,insert,update,references |         |
| company           | varchar(256) | utf8mb4_general_ci | NO   | MUL | NULL    |       | select,insert,update,references |         |
| createtime        | datetime(6)  | NULL               | NO   |     | NULL    |       | select,insert,update,references |         |
| disabletime       | datetime(6)  | NULL               | YES  |     | NULL    |       | select,insert,update,references |         |
| emailvalidated    | tinyint(1)   | NULL               | NO   |     | 0       |       | select,insert,update,references |         |
+-------------------+--------------+--------------------+------+-----+---------+-------+---------------------------------+---------+