summaryrefslogtreecommitdiffstats
path: root/lcm
diff options
context:
space:
mode:
authorfujinhua <fu.jinhua@zte.com.cn>2017-08-19 10:12:32 +0800
committerfujinhua <fu.jinhua@zte.com.cn>2017-08-19 10:12:32 +0800
commit584308136c56f7834546f2b39079a74cb2a733f4 (patch)
tree514f021df1814e96420ce61b8255c5496f77b185 /lcm
parentd1b52d475a5f17b3ee2e069de17ccb6c5e34cd49 (diff)
Add two fields to workflow model
Change-Id: If21328bbd72f615e93aa1de8845711b61ebfa6f3 Issue-Id: VFC-111 Signed-off-by: fujinhua <fu.jinhua@zte.com.cn>
Diffstat (limited to 'lcm')
-rw-r--r--lcm/pub/database/models.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/lcm/pub/database/models.py b/lcm/pub/database/models.py
index 9071c8e7..0f26c238 100644
--- a/lcm/pub/database/models.py
+++ b/lcm/pub/database/models.py
@@ -308,5 +308,7 @@ class WFPlanModel(models.Model):
deployed_id = models.CharField(db_column='DEPLOYEDID', max_length=255, primary_key=True)
process_id = models.CharField(db_column='PROCESSID', max_length=255)
+ status = models.CharField(db_column='STATUS', max_length=255)
+ message = models.CharField(db_column='MESSAGE', max_length=1024)
plan_name = models.CharField(db_column='PLANNAME', max_length=255)