diff options
Diffstat (limited to 'lcm')
-rw-r--r-- | lcm/pub/database/models.py | 2 |
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) |