2021-04-21 16:47:18 +00:00
|
|
|
"""
|
|
|
|
This module defines the Tweet database class.
|
|
|
|
"""
|
|
|
|
|
2021-05-07 17:46:14 +00:00
|
|
|
from ..base import ext
|
2021-04-21 16:47:18 +00:00
|
|
|
|
|
|
|
|
2021-05-07 17:46:14 +00:00
|
|
|
class Tweet(ext.Model):
|
2021-04-21 16:47:18 +00:00
|
|
|
__tablename__ = "tweet"
|
2021-05-07 17:46:14 +00:00
|
|
|
snowflake = ext.Column(ext.String, primary_key=True)
|
|
|
|
content = ext.Column(ext.String)
|
|
|
|
location = ext.Column(ext.String) # Todo: see if a dedicated class for locations is needed. This is likely.
|
|
|
|
poster = ext.Column(ext.String) # Todo: see if a dedicated class for posters is needed.
|
2021-04-21 16:47:18 +00:00
|
|
|
# Relationships
|
2021-05-07 17:46:14 +00:00
|
|
|
repositories = ext.relationship("Composed", back_populates="tweet", cascade="all, delete")
|
|
|
|
conditions = ext.relationship("Contains", back_populates="tweet", cascade="all, delete")
|