VNF instantiation change table model
authorying.yunlong <ying.yunlong@zte.com.cn>
Thu, 9 Feb 2017 07:52:15 +0000 (15:52 +0800)
committerying.yunlong <ying.yunlong@zte.com.cn>
Thu, 9 Feb 2017 07:52:15 +0000 (15:52 +0800)
Change-Id: Ib331f12ff134c69c190e655f64e635346f6a4dad
Issue-Id: GVNFM-16
Signed-off-by: ying.yunlong <ying.yunlong@zte.com.cn>
lcm/lcm/pub/database/models.py

index 8f7d76a..1fdf21f 100644 (file)
 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'