Is it possible to prevent doctrine 1.2 from adding foreign key constraints for a relation?
Asked
Active
Viewed 467 times
1 Answers
2
if you are going to use MYISAM then just do this in your model:
public function setUp() {
$this->option('type', 'MyISAM');
}

ITroubs
- 11,094
- 4
- 27
- 25
-
1you can also specify it in schema.yml for all models by adding these lines at the top: options: type: MyISAM – Dziamid Dec 03 '10 at 01:50