forked from MarseyWorld/MarseyWorld
32 lines
820 B
Python
32 lines
820 B
Python
from sqlalchemy import *
|
|
from sqlalchemy.orm import relationship
|
|
from files.__main__ import Base
|
|
import time
|
|
|
|
class Category(Base):
|
|
__tablename__ = "category"
|
|
|
|
id = Column(Integer, primary_key=True, nullable=False)
|
|
name = Column(String(128), nullable=False)
|
|
sub = Column(String(20), ForeignKey("subs.name"))
|
|
color_text = Column(String(6))
|
|
color_bg = Column(String(6))
|
|
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"<Category(id={self.id})>"
|
|
|
|
def as_json(self):
|
|
data = {
|
|
'id': self.id,
|
|
'name': self.name,
|
|
'sub': self.sub if self.sub else '',
|
|
'color_text': '#' + self.color_text,
|
|
'color_bg': '#' + self.color_bg,
|
|
}
|
|
return data
|