Update VERSION and XOS parent container

Fix model to use integers in choice list

Change-Id: Ia24ab3005d14c7cf2eeefda79a2579c7f933fc13
diff --git a/Dockerfile.synchronizer b/Dockerfile.synchronizer
index 611bcf6..d162e15 100644
--- a/Dockerfile.synchronizer
+++ b/Dockerfile.synchronizer
@@ -13,7 +13,7 @@
 # limitations under the License.
 
 # xosproject/mcord-synchronizer
-FROM xosproject/xos-synchronizer-base:2.0.0
+FROM xosproject/xos-synchronizer-base:2.1.9
 
 COPY xos/synchronizer /opt/xos/synchronizers/mcord
 COPY VERSION /opt/xos/synchronizers/mcord/
diff --git a/VERSION b/VERSION
index 227cea2..38f77a6 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-2.0.0
+2.0.1
diff --git a/xos/synchronizer/models/mcord.xproto b/xos/synchronizer/models/mcord.xproto
index 033e0c7..a522ef7 100644
--- a/xos/synchronizer/models/mcord.xproto
+++ b/xos/synchronizer/models/mcord.xproto
@@ -14,6 +14,6 @@
 
     required string imsi_number = 1 [max_length = 30, content_type = "stripped", blank = False, null = False, db_index = False];
     optional string apn_number = 2 [max_length = 30, content_type = "stripped", blank = True, null = True, db_index = False];
-    optional int32 ue_status = 3 [default = "0", choices = "(('0', 'Detached'), ('1', 'Attached'))", blank = True, null = True, db_index = False];
+    optional int32 ue_status = 3 [default = 0, choices = "((0, 'Detached'), (1, 'Attached'))", blank = True, null = True, db_index = False];
     optional string created_by = 4 [null = True, blank = True, gui_hidden = True];
 }