Is it possible to prevent doctrine 1.2 from adding foreign key constraints for a relation?
A:
if you are going to use MYISAM then just do this in your model:
public function setUp() {
$this->option('type', 'MyISAM');
}
ITroubs
2010-10-04 13:54:46