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 20:40:33 +00:00
|
|
|
created_utc = Column(Integer)
|
2022-02-26 13:31:49 +00:00
|
|
|
|
2022-07-02 06:48:04 +00:00
|
|
|
comment = relationship("Comment")
|
|
|
|
user = relationship("User")
|
2022-02-26 13:31:49 +00:00
|
|
|
|
2022-09-19 20:40:33 +00:00
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
if "created_utc" not in kwargs: kwargs["created_utc"] = int(time.time())
|
|
|
|
super().__init__(*args, **kwargs)
|
|
|
|
|
2022-02-26 13:31:49 +00:00
|
|
|
def __repr__(self):
|
2022-09-29 05:43:29 +00:00
|
|
|
return f"<Notification(id={self.id})>"
|