mirror of
https://github.com/pds-nest/nest.git
synced 2024-11-23 21:44:19 +00:00
14 lines
484 B
Python
14 lines
484 B
Python
|
"""
|
||
|
This module defines the Contains database class.
|
||
|
"""
|
||
|
|
||
|
from ..base import Base
|
||
|
|
||
|
|
||
|
class Contains(Base.Model):
|
||
|
__tablename__ = "contains"
|
||
|
cid = Base.Column(Base.Integer, Base.ForeignKey("condition.id"), primary_key=True)
|
||
|
snowflake = Base.Column(Base.String, Base.ForeignKey("tweet.snowflake"), primary_key=True)
|
||
|
# Relationships
|
||
|
condition = Base.relationship("Condition", back_populates="tweets")
|
||
|
tweet = Base.relationship("Tweet", back_populates="conditions")
|