Closed
Description
hello I am using the 2.0.8 version and I have this problem. The following code
self::$_connection->addForeignKey('table_name', self::getDbName(), new Reference('fk_table_name_01', array(
'referencedTable' => 'ref_table',
'columns' => array('col_name'),
'referencedColumns' => array('id'),
'onUpdate' => 'RESTRICT',
'onDelete' => 'RESTRICT')
));
throught the phalcon migration run command will produce a foreign key with reference option = NO ACTION for both update and delete.