Remove unused ManilaNode sqlalchemy model

Never used cinder legacy.
It has been removed there as well in https://review.opendev.org/#/c/58736

Change-Id: Id8889c54fcfff5480e7f4654f2aff90aa818a1bb
This commit is contained in:
Maurice Escher 2020-05-26 17:03:34 +02:00
parent 3b36160199
commit a386ae304b
No known key found for this signature in database
GPG Key ID: CC56DEC23EE46750

@ -81,14 +81,6 @@ class Service(BASE, ManilaBase):
)
class ManilaNode(BASE, ManilaBase):
"""Represents a running manila service on a host."""
__tablename__ = 'manila_nodes'
id = Column(Integer, primary_key=True)
service_id = Column(Integer, ForeignKey('services.id'), nullable=True)
class Quota(BASE, ManilaBase):
"""Represents a single quota override for a project.