rDrama/files/classes/mod.py

20 lines
573 B
Python
Raw Normal View History

2022-02-05 21:09:17 +00:00
from sqlalchemy import *
from sqlalchemy.orm import relationship
from files.__main__ import Base
2022-02-11 23:32:14 +00:00
from files.helpers.lazy import *
from time import strftime, gmtime
2022-02-05 21:09:17 +00:00
class Mod(Base):
__tablename__ = "mods"
user_id = Column(Integer, ForeignKey("users.id"), primary_key=True)
sub = Column(String, ForeignKey("subs.name"), primary_key=True)
2022-02-11 23:32:14 +00:00
created_utc = Column(Integer)
2022-02-05 21:09:17 +00:00
def __repr__(self):
2022-02-11 23:32:14 +00:00
return f"<Mod(user_id={self.user_id}, sub={self.sub})>"
@property
@lazy
def created_datetime(self):
return str(strftime("%d/%B/%Y %H:%M:%S UTC", gmtime(self.created_utc)))