diff options
author | ying.yunlong <ying.yunlong@zte.com.cn> | 2017-02-09 15:52:15 +0800 |
---|---|---|
committer | ying.yunlong <ying.yunlong@zte.com.cn> | 2017-02-09 15:52:15 +0800 |
commit | 1370f781490fbc020c1e5b039ad6e997cc603cce (patch) | |
tree | a8ab860109e4d38e29801c228cc3346683c719b3 | |
parent | 89975a8a113faa965f950fd2b689cb381649e983 (diff) |
VNF instantiation change table model
Change-Id: Ib331f12ff134c69c190e655f64e635346f6a4dad
Issue-Id: GVNFM-16
Signed-off-by: ying.yunlong <ying.yunlong@zte.com.cn>
-rw-r--r-- | lcm/lcm/pub/database/models.py | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/lcm/lcm/pub/database/models.py b/lcm/lcm/pub/database/models.py index 8f7d76a9..1fdf21f3 100644 --- a/lcm/lcm/pub/database/models.py +++ b/lcm/lcm/pub/database/models.py @@ -14,18 +14,6 @@ from django.db import models -# class VnfInstModel(models.Model): -# class Meta: -# db_table = 'GVNFM_VNFINST' -# -# id = models.CharField(db_column='ID', primary_key=True, max_length=200) -# name = models.CharField(db_column='NAME', max_length=200) -# vnfd_id = models.CharField(db_column='VNFDID', max_length=200) -# description = models.CharField(db_column='DESCRIPTION', max_length=255, null=True, blank=True) -# status = models.CharField(db_column='STATUS', max_length=200, null=True, blank=True) -# create_time = models.CharField(db_column='CREATETIME', max_length=200, null=True, blank=True) -# lastuptime = models.CharField(db_column='LASTUPTIME', max_length=200, null=True, blank=True) - class NfInstModel(models.Model): class Meta: db_table = 'NFINST' |