2022-07-08 19:03:04 +00:00
|
|
|
from sqlalchemy import *
|
|
|
|
from files.__main__ import Base
|
2022-09-12 10:19:35 +00:00
|
|
|
import time
|
2022-07-08 19:03:04 +00:00
|
|
|
|
|
|
|
class SubSubscription(Base):
|
|
|
|
__tablename__ = "sub_subscriptions"
|
|
|
|
user_id = Column(Integer, ForeignKey("users.id"), primary_key=True)
|
|
|
|
sub = Column(String(20), ForeignKey("subs.name"), primary_key=True)
|
2022-09-19 20:40:33 +00:00
|
|
|
created_utc = Column(Integer)
|
|
|
|
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
|
|
if "created_utc" not in kwargs: kwargs["created_utc"] = int(time.time())
|
|
|
|
super().__init__(*args, **kwargs)
|
2022-07-08 19:03:04 +00:00
|
|
|
|
|
|
|
def __repr__(self):
|
|
|
|
return f"<SubSubscription(user_id={self.user_id}, sub={self.sub})>"
|