tags:

views:

24

answers:

1

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