I'm trying to model a list of emails in Crows Foot notation using MySQL Workbench 5.2. The design wants me to indicate that the Email table must link to one of two other tables, SenderInContacts or SenderNotInContacts. How do I show that in crows foot notation using MySQL workbench?
Asked
Active
Viewed 1,587 times
0
-
You shouldn't use "dynamic" (aka. "generic" or "polymorphic") FKs. Use exclusive "static" FKs or inheritance instead. More [here](http://stackoverflow.com/a/22377168/533120). – Branko Dimitrijevic Mar 20 '14 at 15:11
1 Answers
0
Two points here:
Always use the latest version of MySQL Workbench for great new features and lots of bug fixes.
If you are talking about a required relationship then have a look at the
mandatory
field in the relationship editor (double click the relationship to open it).
Btw. The object notation has nothing to do with the various cardinality or mandatory settings.

Mike Lischke
- 48,925
- 16
- 119
- 181