Prevent Doctrine 1 creating foreign key constraints
Is it possible to prevent doctrine 1.2 f开发者_Python百科rom adding foreign key constraints for a relation?
if you are going to use MYISAM then just do this in your model:
public function setUp() {
$this->option('type', 'MyISAM');
}
精彩评论