summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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'
]