Relational grammar ignored on project generation
Posted: Thu 22 Oct 2015 20:43
When working with foreign keys and creating actions on update and delete, this code:
produces
Notice that was changed to . A somewhat different command
t.
Code: Select all
references `incident.assessments` (`id`) on delete restrict on update cascade,
Code: Select all
references `incident.assessments` (id) on delete no action on update cascade
Code: Select all
delete restrict
Code: Select all
delete no action

t.