So how can one specify the storage engine to use for a given entity in Doctrine 2?
I\'m creating a table that needs a full text index and only the MyISAM storage engine
If you're using doctrine2 migrations ..
$table = $schema->createTable('user'); $table->addColumn('id', 'integer'); $table->addOption('engine' , 'MyISAM'); $table->setPrimaryKey(array('id'));