Does anyone have any ideas on how to setup a clients database to cater for different client types?
I am setting up a photography database to cater for wedding, portrait and commercial clients. All three require different info to track.
For example:
PHP Code:
WEDDING CLIENTS
bride_firstname
bride_lastname
groom_firstname
groom_lastname
...
...
...
COMMERCIAL CLIENTS
company_name
agency_name
art_buyer_firstname
art_buyer_lastname
art_director_firstname
art_director_lastname
...
...
...
I guess the only idea I have is to put all the fields from both of the above tables into one client table and only fill in the fields I need when entering a new client. Not glamourous but I guess it will do the job. The other idea is to setup three different client tables. Any suggestions?
Thanks.
Brad