1
Fork 0
mirror of https://github.com/pds-nest/nest.git synced 2024-11-22 21:14:18 +00:00
pds-2021-g2-nest/code/backend/nest_backend/database/tables/Composed.py
Lorenzo Balugani 013ce17aa8 Database implementation
All initial database classes are now properly implemented. Hurray!
2021-04-21 18:47:18 +02:00

14 lines
No EOL
489 B
Python

"""
This module defines the Composed database class.
"""
from ..base import Base
class Composed(Base.Model):
__tablename__ = "composed"
rid = Base.Column(Base.Integer, Base.ForeignKey("repository.id"), primary_key=True)
snowflake = Base.Column(Base.String, Base.ForeignKey("tweet.snowflake"), primary_key=True)
# Relationships
repository = Base.relationship("Repository", back_populates="tweets")
tweet = Base.relationship("Tweet", back_populates="repositories")