dmilani
02-25-2009, 05:12 PM
I have a DB that is used to register teams for a soccer league. The primary purpose/function is managing team contact info and payment histories.
Right now the DB contains the following tables:
Contacts
-contactID
-email
-fname
-lname
-phone
-address
-date
Teams
-teamID
-tname
-contactID
-club
-age
Registration
-regID
-teamID
-league
-session
-reqdiv
-date
-misc
Payments
-payID
-regID
-payer
-note
-date
-type
I would like to add a scheduling component to this system and am trying to figure out the best way to do this. How would people store this schedule? Do you suggest a "Schedule" table with each record being a game? OR a schedule table with an individual record for each team and unique fields contain the game assignment. (There's 8 games per season.)
I have search for examples but can't find anything that fits. Mostly just turned up calendar apps or resource scheduling. That are only scheduling one entity (person/equiment) not two entities (teams).
Thanks for any thoughts. . .
Right now the DB contains the following tables:
Contacts
-contactID
-fname
-lname
-phone
-address
-date
Teams
-teamID
-tname
-contactID
-club
-age
Registration
-regID
-teamID
-league
-session
-reqdiv
-date
-misc
Payments
-payID
-regID
-payer
-note
-date
-type
I would like to add a scheduling component to this system and am trying to figure out the best way to do this. How would people store this schedule? Do you suggest a "Schedule" table with each record being a game? OR a schedule table with an individual record for each team and unique fields contain the game assignment. (There's 8 games per season.)
I have search for examples but can't find anything that fits. Mostly just turned up calendar apps or resource scheduling. That are only scheduling one entity (person/equiment) not two entities (teams).
Thanks for any thoughts. . .