Index: branches/feature-module-update/html/install/sql/create_table_mysql.sql
===================================================================
--- branches/feature-module-update/html/install/sql/create_table_mysql.sql	(revision 16286)
+++ branches/feature-module-update/html/install/sql/create_table_mysql.sql	(revision 16306)
@@ -1162,4 +1162,11 @@
 ) TYPE=InnoDB;
 
+CREATE TABLE mtb_mobile_domain (
+    id int2,
+    name text,
+    rank int2 NOT NULL DEFAULT 0,
+    PRIMARY KEY (id)
+) TYPE=InnoDB;
+
 CREATE TABLE mtb_constants (
     id text,
Index: branches/feature-module-update/html/install/sql/create_table_pgsql.sql
===================================================================
--- branches/feature-module-update/html/install/sql/create_table_pgsql.sql	(revision 16286)
+++ branches/feature-module-update/html/install/sql/create_table_pgsql.sql	(revision 16306)
@@ -1163,4 +1163,11 @@
 );
 
+CREATE TABLE mtb_mobile_domain (
+    id int2,
+    name text,
+    rank int2 NOT NULL DEFAULT 0,
+    PRIMARY KEY (id)
+);
+
 CREATE TABLE mtb_constants (
     id text,
