24 lines
711 B
Python
24 lines
711 B
Python
from sqlalchemy import *
|
|
from sqlalchemy.orm import relationship
|
|
from files.__main__ import Base
|
|
from files.helpers.lazy import *
|
|
import time
|
|
|
|
class Mod(Base):
|
|
|
|
__tablename__ = "mods"
|
|
user_id = Column(Integer, ForeignKey("users.id"), primary_key=True)
|
|
sub = Column(String, ForeignKey("subs.name"), primary_key=True)
|
|
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)
|
|
|
|
def __repr__(self):
|
|
return f"<Mod(user_id={self.user_id}, sub={self.sub})>"
|
|
|
|
@property
|
|
@lazy
|
|
def created_datetime(self):
|
|
return str(time.strftime("%d/%B/%Y %H:%M:%S UTC", time.gmtime(self.created_utc))) |