2021-04-21 16:47:18 +00:00
|
|
|
"""
|
|
|
|
This module defines the Contains 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 Contains(ext.Model):
|
2021-04-21 16:47:18 +00:00
|
|
|
__tablename__ = "contains"
|
2021-05-11 16:45:40 +00:00
|
|
|
cid = ext.Column(ext.Integer, ext.ForeignKey("condition.id", ondelete="CASCADE"), primary_key=True)
|
|
|
|
snowflake = ext.Column(ext.String, ext.ForeignKey("tweet.snowflake", ondelete="CASCADE"), primary_key=True)
|
2021-04-21 16:47:18 +00:00
|
|
|
# Relationships
|
2021-05-07 17:46:14 +00:00
|
|
|
condition = ext.relationship("Condition", back_populates="tweets")
|
|
|
|
tweet = ext.relationship("Tweet", back_populates="conditions")
|