Changeset 11708


Ignore:
Timestamp:
2007/03/09 21:14:31 (17 years ago)
Author:
kakinaka
Message:
 
Location:
branches/dev/html/install/sql
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • branches/dev/html/install/sql/create_table_mysql.sql

    r11706 r11708  
    528528    update_date datetime  
    529529) TYPE=InnoDB ; 
    530  
    531 CREATE INDEX dtb_customer_mobile_phone_id_key ON dtb_customer (mobile_phone_id(64)); 
    532530 
    533531CREATE TABLE dtb_customer_mail_temp ( 
  • branches/dev/html/install/sql/create_table_pgsql.sql

    r11706 r11708  
    521521); 
    522522 
     523 
    523524CREATE TABLE dtb_customer_mail ( 
    524525    email text NOT NULL UNIQUE, 
     
    529530); 
    530531 
    531 CREATE INDEX dtb_customer_mobile_phone_id_key ON dtb_customer (mobile_phone_id); 
    532532 
    533533CREATE TABLE dtb_customer_mail_temp ( 
  • branches/dev/html/install/sql/insert_data.sql

    r11460 r11708  
    33CREATE INDEX dtb_order_detail_product_id_key ON dtb_order_detail(product_id); 
    44CREATE INDEX dtb_category_category_id_key ON dtb_category(category_id); 
     5CREATE INDEX dtb_customer_mobile_phone_id_key ON dtb_customer (mobile_phone_id); 
    56 
    67INSERT INTO dtb_member (name, login_id, password, creator_id, authority, work, del_flg, create_date, update_date)  
Note: See TracChangeset for help on using the changeset viewer.