action table add
This commit is contained in:
@@ -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)
|
||||
Reference in New Issue
Block a user