forked from MarseyWorld/MarseyWorld
22 lines
777 B
Python
22 lines
777 B
Python
from sqlalchemy import *
|
|
from sqlalchemy.orm import relationship
|
|
from files.__main__ import Base
|
|
import time
|
|
|
|
class UserBlock(Base):
|
|
|
|
__tablename__ = "userblocks"
|
|
user_id = Column(Integer, ForeignKey("users.id"), primary_key=True)
|
|
target_id = Column(Integer, ForeignKey("users.id"), primary_key=True)
|
|
created_utc = Column(Integer)
|
|
|
|
user = relationship("User", primaryjoin="User.id==UserBlock.user_id", back_populates="blocking")
|
|
target = relationship("User", primaryjoin="User.id==UserBlock.target_id", back_populates="blocked")
|
|
|
|
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"<UserBlock(user={self.user_id}, target={self.target_id})>"
|