summaryrefslogtreecommitdiffstats
path: root/lcm/lcm/pub/database
diff options
context:
space:
mode:
authorying.yunlong <ying.yunlong@zte.com.cn>2017-03-02 10:10:53 +0800
committerying.yunlong <ying.yunlong@zte.com.cn>2017-03-02 10:10:53 +0800
commit556c89c48942c28fbafb2ae4acdd571fc8967634 (patch)
tree219bf0c3092d39bd3fe4bcc4e473362bf4a410ec /lcm/lcm/pub/database
parentcc8e51bd402ec135d7bfab7dcafedbdb47a95da1 (diff)
Modify qurey and models of gvnfm vnflcm
Change-Id: I489627badda8753fce665c57731d209467598460 Issue-Id: GVNFM-42 Signed-off-by: ying.yunlong <ying.yunlong@zte.com.cn>
Diffstat (limited to 'lcm/lcm/pub/database')
-rw-r--r--lcm/lcm/pub/database/models.py33
1 files changed, 0 insertions, 33 deletions
diff --git a/lcm/lcm/pub/database/models.py b/lcm/lcm/pub/database/models.py
index 9f7773bb..0108e836 100644
--- a/lcm/lcm/pub/database/models.py
+++ b/lcm/lcm/pub/database/models.py
@@ -279,36 +279,3 @@ class CPInstModel(models.Model):
relatedvl = models.CharField(db_column='RELATEDVL', max_length=255, blank=True, null=True)
relatedcp = models.CharField(db_column='RELATEDCP', max_length=255, blank=True, null=True)
relatedport = models.CharField(db_column='RELATEDPORT', max_length=255, blank=True, null=True)
-
-class VimModel(models.Model):
- vimid = models.IntegerField(db_column='CMSERVERID', primary_key=True)
- name = models.CharField(db_column='NAME', max_length=255, blank=True, null=True)
- type = models.CharField(db_column='CMSTYPE', max_length=255, blank=True, null=True)
- imageurl = models.CharField(db_column='IMAGEURL', max_length=1024, blank=True, null=True)
- apiurl = models.CharField(db_column='APIURL', max_length=1024, blank=True, null=True)
- version = models.CharField(db_column='VER', max_length=1024, blank=True, null=True)
- supportnotification = models.IntegerField(db_column='SUPPORTNOTIFICATION', default=0)
- longitude = models.CharField(db_column='LONGITUDE', max_length=1024, blank=True, null=True)
- latitude = models.CharField(db_column='LATITUDE', max_length=1024, blank=True, null=True)
- grantexclude = models.CharField(db_column='GRANTEXCLUDE', max_length=1, default='0', blank=True, null=True)
- slalevel = models.IntegerField(db_column='SLALEVEL', default=0)
-
- class Meta:
- db_table = 'CMSSERVER'
-
- def __unicode__(self):
- return '%s' % self.name
-
-
-class VimUserModel(models.Model):
- class Meta:
- db_table = 'CMSSERVER_USER'
-
- uuid = models.CharField(db_column='UUID', primary_key=True, max_length=255)
- vimid = models.IntegerField(db_column='CMSERVERID')
- username = models.CharField(db_column='USERNAME', max_length=255)
- password = models.CharField(db_column='PWD', max_length=255, blank=True)
- defaulttenant = models.CharField(db_column='TENANT', max_length=255, blank=True)
-
- def __unicode__(self):
- return '%s' % self.username \ No newline at end of file