forked from rDrama/rDrama
1
0
Fork 0
rDrama/files/classes/mod.py

23 lines
678 B
Python

import time
from sqlalchemy import ForeignKey
from sqlalchemy.orm import Mapped, mapped_column
from sqlalchemy.sql.sqltypes import *
from files.classes import Base
from files.helpers.lazy import *
from files.helpers.types import user_id_fk_pk
class Mod(Base):
__tablename__ = "mods"
user_id: Mapped[user_id_fk_pk]
hole: Mapped[str] = mapped_column(ForeignKey("holes.name"), primary_key=True)
created_utc: Mapped[int]
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"<{self.__class__.__name__}(user_id={self.user_id}, hole={self.hole})>"