Set table collation to `utf8mb4_unicode_ci` in CakePHP with Phinx In your migration, add this as an option to the table: $this->table( 'specific_costs_users', ['collation'=>'utf8mb4_unicode_ci'] ) ->addColumn(...) I found the answer here on StackOverflow