Prevent Doctrine 1 creating foreign key constraints

Is it possible to prohibit doctrine 1.2 from adding foreign key constraints to relationships?

+3
source share
1 answer

if you are going to use MYISAM just do it in your model:

public function setUp() {
        $this->option('type', 'MyISAM');
}
+2
source

Source: https://habr.com/ru/post/1767855/


All Articles