Symfony 1.4 trae por defecto el ORM Doctrine aún no tengo tiempo de trabajar con ese ORM, solo lo he visto como funciona.Como estoy acostumbrado a usar Propel.
Cuando no se tiene creado el proyecto, en su creación para fijar el uso de propel lo creo como
/ruta_symfony-1.4/data/bin/symfony generate:project test --orm=Propel
Si ya se empezó a trabajar con el proyecto en doctrine, y lo quiero cambiar a Propel debo habilitar el plugin en config/ProjectConfiguration.class.php
y dejar mas así el archivo
class ProjectConfiguration extends sfProjectConfiguration
{
public function setup()
{
// $this->enablePlugins('sfDoctrinePlugin');
$this->enablePlugins('sfPropelPlugin');
}
}
luego limpiar la cache y listo
php symfony cc