I am setting up a database that represents different types of content. I have a link (think of it as a URL) that can point at different types of data over time, say a phone number, an email address, or a web page.
I figured I would make tables like:
- content_phone
- content_email
- content_url
I also then have a link table that needs to point at a particular type of content.
The content that a link can point to changes over time (time X it points at a URL time X + 1 it points at a phone number, etc...)
The content types have no fields in common, and I do not expect that they ever will (not sure if that makes a difference).
I am stuck for a nice way to hook the link and the content type together.
EDIT:
There are a large number of unrelated tables for content types. Some tables may have 10 fields.