server-cli-todo-cleanup
This commit is contained in:
@@ -17,4 +17,6 @@ class Collection(Base):
|
||||
title: str = Column(String, nullable=False, comment="Title")
|
||||
body: str = Column(String, nullable=True, comment="Body")
|
||||
pic: str = Column(String, nullable=True, comment="Picture")
|
||||
createdAt: datetime = Column(DateTime, default=datetime.now, comment="Created At")
|
||||
createdBy: str = Column(ForeignKey('user.id'), comment="Created By")
|
||||
|
||||
|
@@ -8,4 +8,4 @@ class Notification(Base):
|
||||
template: str = Column(String, nullable = False)
|
||||
variables: JSONType = Column(JSONType, nullable = True) # [ <var1>, .. ]
|
||||
|
||||
# FIXME looks like frontend code
|
||||
# looks like frontend code
|
Reference in New Issue
Block a user