forked from rDrama/rDrama
1
0
Fork 0
rDrama/files/classes/notifications.py

19 lines
538 B
Python
Raw Normal View History

2022-02-26 13:31:49 +00:00
from sqlalchemy import *
from sqlalchemy.orm import relationship
from files.__main__ import Base
import time
class Notification(Base):
__tablename__ = "notifications"
user_id = Column(Integer, ForeignKey("users.id"), primary_key=True)
comment_id = Column(Integer, ForeignKey("comments.id"), primary_key=True)
read = Column(Boolean, default=False)
2022-09-19 19:24:16 +00:00
created_utc = Column(Integer, default=int(time.time()))
2022-02-26 13:31:49 +00:00
comment = relationship("Comment")
user = relationship("User")
2022-02-26 13:31:49 +00:00
def __repr__(self):
return f"<Notification(id={self.id})>"