summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFu Jinhua <fu.jinhua@zte.com.cn>2018-03-13 06:05:32 +0000
committerGerrit Code Review <gerrit@onap.org>2018-03-13 06:05:32 +0000
commitd7e55d8c0d5305264e59a97863f7299bac2cd2af (patch)
tree927c2ad5f3cb8b7f374c8f52f655e11279ab14b4
parentec152961775fc1c420497cc1472c1ea9403b5154 (diff)
parent10ab5c41564e9a2b4c23771dd846f2a3e1103a78 (diff)
Merge "Fix vfc-lcm start warning"
-rw-r--r--lcm/pub/database/models.py2
-rw-r--r--lcm/settings.py2
2 files changed, 1 insertions, 3 deletions
diff --git a/lcm/pub/database/models.py b/lcm/pub/database/models.py
index 306cc510..22a7a6b3 100644
--- a/lcm/pub/database/models.py
+++ b/lcm/pub/database/models.py
@@ -302,7 +302,7 @@ class ServiceBaseInfoModel(models.Model):
active_status = models.CharField(db_column='activeStatus', max_length=20)
status = models.CharField(db_column='status', max_length=20)
creator = models.CharField(db_column='creator', max_length=50)
- create_time = models.BigIntegerField(db_column='createTime', max_length=20)
+ create_time = models.BigIntegerField(db_column='createTime')
class WFPlanModel(models.Model):
diff --git a/lcm/settings.py b/lcm/settings.py
index 128d298c..37c923cd 100644
--- a/lcm/settings.py
+++ b/lcm/settings.py
@@ -45,8 +45,6 @@ INSTALLED_APPS = [
'django.contrib.staticfiles',
'rest_framework',
'lcm.pub.database',
- # 'lcm.samples',
- # 'lcm.swagger',
'drf_yasg'
]