summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--nova/models.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/nova/models.py b/nova/models.py
index 561a722fc..e4075faeb 100644
--- a/nova/models.py
+++ b/nova/models.py
@@ -193,6 +193,18 @@ class Volume(Base, NovaBase):
attach_status = Column(String) # FIXME enum
delete_on_termination = Column(Boolean)
+class Network(Base, NovaBase):
+ __tablename__ = 'networks'
+
+class FixedIp(Base, NovaBase):
+ __tablename__ = 'fixed_ips'
+
+class ElasticIp(Base, NovaBase):
+ __tablename__ = 'elastic_ips'
+
+class Vpn(Base, NovaBase):
+ __tablename__ = 'vpns'
+
def create_session(engine=None):
return NovaBase.get_session()