action table add

This commit is contained in:
2023-09-16 01:52:15 +00:00
parent 59e6d33656
commit c1e50736e8
4 changed files with 40 additions and 4 deletions

View File

@@ -28,4 +28,12 @@ class Kintone(Base):
type = Column(Integer, index=True, nullable=False)
name = Column(String(100), nullable=False)
desc = Column(String)
content = Column(String)
content = Column(String)
class Action(Base):
__tablename__ = "action"
id = Column(Integer, primary_key=True, index=True)
name = Column(String(100), index=True, nullable=False)
title = Column(String(200))
inputpoint = Column(String(100))
property = Column(String)