From 3ae685a0e2b4ac97bea694f5ff376e494e834a62 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=96=B9=20=E6=9F=8F?= Date: Sun, 17 Sep 2023 08:54:54 +0000 Subject: [PATCH] action add subtitle --- backend/app/db/models.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/backend/app/db/models.py b/backend/app/db/models.py index 0216735..29edce6 100644 --- a/backend/app/db/models.py +++ b/backend/app/db/models.py @@ -35,5 +35,6 @@ class Action(Base): id = Column(Integer, primary_key=True, index=True) name = Column(String(100), index=True, nullable=False) title = Column(String(200)) - inputpoint = Column(String(100)) + subtitle = Column(String(500)) + outputpoint = Column(String) property = Column(String) \ No newline at end of file