Fix the naming of contactgroup
and contactgroup_member
#187
Labels
low priority
Might not receive attention any time soon
contactgroup
and contactgroup_member
#187
Currently, the PostgreSQL schema uses the snake_case notation and distinguishes between basic data and data additions.
Examples:
Table
contact
=> Holds the basic information for a contact/user.Table
contact_address
=> Holds additional information about a contact's address data.Table
incident
=> Holds the basic information for an incident.Table
incident_contact
=> Holds additional information about what contacts are associated with the incident.This notation is used everywhere, with the exception of the
contactgroup
. As this table holds basic information about the group itself, it's not directly associated with a contact. That only happens if acontact
gets its relation assigned in thecontactgroup_member
table.Thus I would suggest to either change the table names
contactgroup
andcontactgroup_member
to justgroup
andgroup_member
or to add an additional underscore to emphasize their distinctions (contact_group
andcontact_group_member
in that case).The text was updated successfully, but these errors were encountered: