I am building an application that can have multiple users from multiple accounts. For example, an account could be Company ABC. Users X, Y, and Z are members of this account. Each account should have its own separate instance so that if Company ABC creates a new DB item, it should only be visible and manageable by Company ABC. My question is this: do I have to make an explicit foreign key reference to the account in every single table in my DB? For example:
TABLE - ACCOUNTS
ACCOUNT_ID | ACCOUNT_NAME
1234 | Company ABC
TABLE - PAGES
PAGE_ID | PAGE_TITLE | ACCOUNT_ID
987 | My Page | 1234
TABLE - ASSETS
ASSET_ID | ASSET_TITLE | ACCOUNT_ID
4443 | My Asset | 1234
TABLE - GROUPS
GROUP_ID | GROUP_NAME | ACCOUNT_ID
8888 | Admins | 1234
etc?
This seems wrong to me for some reason and I feel like there is a better way that I'm not thinking of. I have nearly 75 tables that I would need to do this for. Is this right?