Index: branches/dev/html/install/sql/create_table_mysql.sql
===================================================================
--- branches/dev/html/install/sql/create_table_mysql.sql	(revision 11460)
+++ branches/dev/html/install/sql/create_table_mysql.sql	(revision 11706)
@@ -521,6 +521,4 @@
 ) TYPE=InnoDB ;
 
-CREATE INDEX dtb_customer_mobile_phone_id_key ON dtb_customer (mobile_phone_id(64));
-
 CREATE TABLE dtb_customer_mail (
     email varchar(50) NOT NULL UNIQUE,
@@ -530,4 +528,6 @@
     update_date datetime 
 ) TYPE=InnoDB ;
+
+CREATE INDEX dtb_customer_mobile_phone_id_key ON dtb_customer (mobile_phone_id(64));
 
 CREATE TABLE dtb_customer_mail_temp (
Index: branches/dev/html/install/sql/create_table_pgsql.sql
===================================================================
--- branches/dev/html/install/sql/create_table_pgsql.sql	(revision 11460)
+++ branches/dev/html/install/sql/create_table_pgsql.sql	(revision 11706)
@@ -521,6 +521,4 @@
 );
 
-CREATE INDEX dtb_customer_mobile_phone_id_key ON dtb_customer (mobile_phone_id);
-
 CREATE TABLE dtb_customer_mail (
     email text NOT NULL UNIQUE,
@@ -530,4 +528,6 @@
     update_date timestamp DEFAULT now()
 );
+
+CREATE INDEX dtb_customer_mobile_phone_id_key ON dtb_customer (mobile_phone_id);
 
 CREATE TABLE dtb_customer_mail_temp (
