2022-09-12 10:19:35 +00:00
|
|
|
import time
|
2022-05-04 23:09:46 +00:00
|
|
|
|
2022-11-15 09:19:08 +00:00
|
|
|
from sqlalchemy import Column, ForeignKey
|
|
|
|
from sqlalchemy.orm import relationship
|
|
|
|
from sqlalchemy.sql.sqltypes import *
|
|
|
|
|
|
|
|
from files.classes import Base
|
|
|
|
|
2022-05-04 23:09:46 +00:00
|
|
|
class Subscription(Base):
|
|
|
|
__tablename__ = "subscriptions"
|
|
|
|
user_id = Column(Integer, ForeignKey("users.id"), primary_key=True)
|
2023-06-07 23:26:32 +00:00
|
|
|
post_id = Column(Integer, ForeignKey("posts.id"), primary_key=True)
|
2022-09-19 20:40:33 +00:00
|
|
|
created_utc = Column(Integer)
|
2022-09-12 10:19:35 +00:00
|
|
|
|
2022-07-02 06:48:04 +00:00
|
|
|
user = relationship("User", uselist=False)
|
2023-06-07 23:26:32 +00:00
|
|
|
post = relationship("Post", uselist=False)
|
2022-05-04 23:09:46 +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-05-04 23:09:46 +00:00
|
|
|
def __repr__(self):
|
2022-11-29 21:02:38 +00:00
|
|
|
return f"<{self.__class__.__name__}(id={self.id})>"
|