I'm used to creating the PDO object with something like this in the 4th parameter (driver options):
array(\PDO::MYSQL_ATTR_INIT_COMMAND => "SET NAMES {$this->charset} COLLATE {$this->collation}")
How can I tell symfony 2 to do this? In the configuration file I can only see a 'charset' option.
I also need to create all the tables with a specific collation: utf8_unicode_ci
What can I do to have all the tables created through the command line be created with that collation instead of latin1?