I have the following tables: 1) Event 2) Agenda 3) Registrant_Type 4) Fee
Relationship: Event to Agenda: one-to-many (one event consists of zero, one or many agenda; one agenda belongs to only one event)
Event to Registrant_Type: one-to-many (one event consists of zero, one or many registrant types; one registrant type belongs to only one event)
Event to Fee: one-to-one (One event consists of only one fee (registration fee))
Agenda to Fee: one-to-one (One agenda consists of only one fee (agenda fee))
Registrant_Type to Fee: one-to-one (One registrant type consists of only one fee (registration fee))
How do I create tables based on these relationship?