summaryrefslogtreecommitdiffstats
path: root/compass-tasks-base/db/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'compass-tasks-base/db/models.py')
-rw-r--r--compass-tasks-base/db/models.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/compass-tasks-base/db/models.py b/compass-tasks-base/db/models.py
index 5f8fb52..929f4dc 100644
--- a/compass-tasks-base/db/models.py
+++ b/compass-tasks-base/db/models.py
@@ -1864,6 +1864,7 @@ class Subnet(BASE, TimestampMixin, HelperMixin):
id = Column(Integer, primary_key=True)
name = Column(String(80), unique=True, nullable=True)
subnet = Column(String(80), unique=True, nullable=False)
+ gateway = Column(String(80), unique=True, nullable=True)
host_networks = relationship(
HostNetwork,