I've created a database in MySQL that has the following tables
Attachment
Sender
Recipient
Message
mr_link
ms_link
ma_link
Sender and Recipient are distinct tables of email addresses mr_link contains the ids of a message and its associated recipients (one entry per recipient per message)
ms_link has the ids of a message and its associated sender
ma_link has the ids of a message and its associated file(s)
I've recently discovered SQLAlchemy and like how it will make my queries, etc. more efficient.
What I'm looking to do now is convert this existing schema into tables with relationships, but my MySQL-fu and SQLAlchemy-fu are still in their early stages.
I've come here for guidance.
Thanks, Larry