Changeset 11723 for branches/dev/html


Ignore:
Timestamp:
2007/03/09 22:31:03 (19 years ago)
Author:
naka
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/dev/html/install/index.php

    r11721 r11723  
    928928    sfColumnExists("dtb_customer", "mailmaga_flg", "int2", $dsn, true); 
    929929    if (!sfColumnExists("dtb_customer", "mobile_phone_id", "", $dsn, true)) { 
    930         $objQuery = new SC_Query($dsn); 
    931         if ($objDBParam->getValue('db_type') == 'mysql') { 
    932             $objQuery->query("CREATE INDEX dtb_customer_mobile_phone_id_key ON dtb_customer (mobile_phone_id(64))"); 
    933         } else { 
    934             $objQuery->query("CREATE INDEX dtb_customer_mobile_phone_id_key ON dtb_customer (mobile_phone_id)"); 
    935         } 
     930        // ¥¤¥ó¥Ç¥Ã¥¯¥¹¤ÎÄɲà
     931        sfIndexExists("dtb_customer", "mobile_phone_id", "dtb_customer_mobile_phone_id_key", 64, $dsn, true); 
    936932    } 
    937933 
Note: See TracChangeset for help on using the changeset viewer.