Fix schema query: the ondelete and onupdate were added in the wrong order

pull/131/head
Christopher Jolly 3 years ago
parent d51935d04a
commit ee87572b2e

@ -424,8 +424,8 @@ namespace EntityFrameworkCore.Jet.Data
referencingTableName,
principalTableName,
relationType,
onUpdate,
onDelete,
onUpdate,
isEnforced,
isInherited);
}

@ -435,8 +435,8 @@ namespace EntityFrameworkCore.Jet.Data
referencingTableName,
principalTableName,
relationType,
onUpdate,
onDelete,
onUpdate,
isEnforced,
isInherited);
}

Loading…
Cancel
Save