Add two fields to workflow model
[vfc/nfvo/lcm.git] / lcm / pub / database / models.py
index 9071c8e..0f26c23 100644 (file)
@@ -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)