26 lines
718 B
Python
26 lines
718 B
Python
import time
|
|
|
|
from sqlalchemy import Column, ForeignKey
|
|
from sqlalchemy.orm import relationship
|
|
from sqlalchemy.sql.sqltypes import *
|
|
|
|
from files.classes import Base
|
|
|
|
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)
|
|
created_utc = Column(Integer)
|
|
|
|
comment = relationship("Comment")
|
|
user = relationship("User")
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
if "created_utc" not in kwargs: kwargs["created_utc"] = int(time.time())
|
|
super().__init__(*args, **kwargs)
|
|
|
|
def __repr__(self):
|
|
return f"<Notification(id={self.id})>"
|