I have two tables:
provider_contact
provider_contact_role
Now i need a join table for those and what's coming to my mind first is:
Option 1: provider_contact_provider_contact_role
but this is too long.
Option 2: provider_contact_role
which ideally describes the purpose of the table, but that is exactly the same as second table's name :)
What is your suggestion ?