Zocoi Vietnamese /ʒoʊ kɔɪ/: (informal) Let's watch/read together

Creating utf-8 tables in symfony 1.4 /doctrine 1.2

Add this method to your ProjectConfiguration.class.php

[sourcecode language="php"]
public function configureDoctrine(Doctrine_Manager $manager)
{
$manager->setCollate('utf8_unicode_ci');
$manager->setCharset('utf8');
}
[/sourcecode]