Skip to content

Commit

Permalink
Updated for masking view model change
Browse files Browse the repository at this point in the history
  • Loading branch information
sushanthakumar committed Jun 26, 2021
1 parent f63c741 commit 80b2563
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions delfin/db/sqlalchemy/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,7 @@
from oslo_config import cfg
from oslo_db.sqlalchemy import models
from oslo_db.sqlalchemy.types import JsonEncodedDict
from sqlalchemy import Column, Integer, String, Boolean, BigInteger, \
DateTime, Text
from sqlalchemy import Column, Integer, String, Boolean, BigInteger, DateTime
from sqlalchemy.ext.declarative import declarative_base

from delfin.common import constants
Expand Down Expand Up @@ -357,9 +356,8 @@ class MaskingView(BASE, DelfinBase):
native_volume_group_id = Column(String(255))
native_port_group_id = Column(String(255))
native_storage_host_id = Column(String(255))
storage_host_initiators = Column(Text)
volumes = Column(Text)
ports = Column(Text)
native_volume_id = Column(String(255))
native_port_id = Column(String(255))
native_masking_view_id = Column(String(255))


Expand Down

0 comments on commit 80b2563

Please sign in to comment.