SEBA-78 add PortBase to models.py
Change-Id: Idf9d541db1263ff845441ee754112f722c905c51
diff --git a/VERSION b/VERSION
index 227cea2..8041668 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-2.0.0
+2.0.1-dev0
diff --git a/xos/synchronizer/models/models.py b/xos/synchronizer/models/models.py
index 380d44c..046e744 100644
--- a/xos/synchronizer/models/models.py
+++ b/xos/synchronizer/models/models.py
@@ -19,6 +19,7 @@
from models_decl import VOLTService_decl
from models_decl import VOLTServiceInstance_decl
from models_decl import OLTDevice_decl
+from models_decl import PortBase_decl
from models_decl import PONPort_decl
from models_decl import NNIPort_decl
from models_decl import ONUDevice_decl
@@ -83,6 +84,10 @@
super(OLTDevice, self).delete(*args, **kwargs)
+class PortBase(PortBase_decl):
+ class Meta:
+ proxy = True
+
class PONPort(PONPort_decl):
class Meta:
proxy = True