source: branches/version-2_5-dev/html/install/sql/create_table_mysql.sql @ 20110

Revision 20110, 30.8 KB checked in by nanasess, 13 years ago (diff)

#990(配送設定・支払方法設定の仕様変更)

  • Property svn:eol-style set to LF
  • Property svn:mime-type set to text/plain; charset=utf-8
Line 
1create table dtb_module_update_logs(
2    log_id int  NOT NULL,
3    module_id int NOT NULL,
4    buckup_path text,
5    error_flg smallint DEFAULT 0,
6    error text,
7    ok text,
8    create_date timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
9    update_date timestamp NOT NULL,
10    PRIMARY KEY (log_id)
11) ENGINE=InnoDB;
12
13CREATE TABLE dtb_ownersstore_settings (
14    public_key text
15) ENGINE=InnoDB;
16
17CREATE TABLE dtb_kiyaku (
18    kiyaku_id int  NOT NULL,
19    kiyaku_title text NOT NULL,
20    kiyaku_text text NOT NULL,
21    rank int NOT NULL DEFAULT 0,
22    creator_id int NOT NULL,
23    create_date timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
24    update_date timestamp NOT NULL,
25    del_flg smallint NOT NULL DEFAULT 0,
26    PRIMARY KEY (kiyaku_id)
27) ENGINE=InnoDB;
28
29CREATE TABLE dtb_holiday (
30    holiday_id int  NOT NULL,
31    title text NOT NULL,
32    month smallint NOT NULL,
33    day smallint NOT NULL,
34    rank int NOT NULL DEFAULT 0,
35    creator_id int NOT NULL,
36    create_date timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
37    update_date timestamp NOT NULL,
38    del_flg smallint NOT NULL DEFAULT 0,
39    PRIMARY KEY (holiday_id)
40) ENGINE=InnoDB;
41
42CREATE TABLE mtb_zip (
43    code text,
44    old_zipcode text,
45    zipcode text,
46    state_kana text,
47    city_kana text,
48    town_kana text,
49    state text,
50    city text,
51    town text,
52    flg1 text,
53    flg2 text,
54    flg3 text,
55    flg4 text,
56    flg5 text,
57    flg6 text
58) ENGINE=InnoDB;
59
60CREATE TABLE dtb_bat_order_daily_age (
61    order_count numeric NOT NULL DEFAULT 0,
62    total numeric NOT NULL DEFAULT 0,
63    total_average numeric NOT NULL DEFAULT 0,
64    start_age smallint,
65    end_age smallint,
66    member smallint,
67    order_date datetime,
68    create_date timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
69) ENGINE=InnoDB;
70
71CREATE TABLE dtb_update (
72    module_id int NOT NULL,
73    module_name text NOT NULL,
74    now_version text,
75    latest_version text NOT NULL,
76    module_explain text,
77    main_php text NOT NULL,
78    extern_php text NOT NULL,
79    install_sql text,
80    uninstall_sql text,
81    other_files text,
82    del_flg smallint NOT NULL DEFAULT 0,
83    create_date timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
84    update_date timestamp NOT NULL,
85    release_date datetime NOT NULL,
86    PRIMARY KEY (module_id)
87) ENGINE=InnoDB;
88
89CREATE TABLE dtb_baseinfo (
90    company_name text,
91    company_kana text,
92    zip01 text,
93    zip02 text,
94    pref smallint,
95    addr01 text,
96    addr02 text,
97    tel01 text,
98    tel02 text,
99    tel03 text,
100    fax01 text,
101    fax02 text,
102    fax03 text,
103    business_hour text,
104    law_company text,
105    law_manager text,
106    law_zip01 text,
107    law_zip02 text,
108    law_pref smallint,
109    law_addr01 text,
110    law_addr02 text,
111    law_tel01 text,
112    law_tel02 text,
113    law_tel03 text,
114    law_fax01 text,
115    law_fax02 text,
116    law_fax03 text,
117    law_email text,
118    law_url text,
119    law_term01 text,
120    law_term02 text,
121    law_term03 text,
122    law_term04 text,
123    law_term05 text,
124    law_term06 text,
125    law_term07 text,
126    law_term08 text,
127    law_term09 text,
128    law_term10 text,
129    tax numeric NOT NULL DEFAULT 5,
130    tax_rule smallint NOT NULL DEFAULT 1,
131    email01 text,
132    email02 text,
133    email03 text,
134    email04 text,
135    email05 text,
136    free_rule numeric,
137    shop_name text,
138    shop_kana text,
139    shop_name_eng text,
140    point_rate numeric NOT NULL DEFAULT 0,
141    welcome_point numeric NOT NULL DEFAULT 0,
142    update_date timestamp NOT NULL,
143    top_tpl text,
144    product_tpl text,
145    detail_tpl text,
146    mypage_tpl text,
147    good_traded text,
148    message text,
149    regular_holiday_ids text,
150    latitude text,
151    longitude text,
152    downloadable_days numeric DEFAULT 30,
153    downloadable_days_unlimited smallint
154) ENGINE=InnoDB;
155
156CREATE TABLE dtb_deliv (
157    deliv_id int  NOT NULL,
158    product_type_id int,
159    name text,
160    service_name text,
161    remark text,
162    confirm_url text,
163    rank int,
164    status smallint NOT NULL DEFAULT 1,
165    del_flg smallint NOT NULL DEFAULT 0,
166    creator_id int NOT NULL,
167    create_date timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
168    update_date timestamp NOT NULL,
169    PRIMARY KEY (deliv_id)
170) ENGINE=InnoDB;
171
172CREATE TABLE dtb_payment_options (
173    deliv_id int NOT NULL,
174    payment_id int NOT NULL,
175    rank int,
176    PRIMARY KEY (deliv_id, payment_id)
177) ENGINE=InnoDB;
178
179CREATE TABLE dtb_delivtime (
180    deliv_id int NOT NULL,
181    time_id int NOT NULL,
182    deliv_time text NOT NULL,
183    PRIMARY KEY (deliv_id, time_id)
184) ENGINE=InnoDB;
185
186CREATE TABLE dtb_delivfee (
187    deliv_id int NOT NULL,
188    fee_id int  NOT NULL,
189    fee numeric NOT NULL,
190    pref smallint,
191    PRIMARY KEY (deliv_id, fee_id)
192) ENGINE=InnoDB;
193
194CREATE TABLE dtb_payment (
195    payment_id int  NOT NULL,
196    payment_method text,
197    charge numeric,
198    rule numeric,
199    rank int,
200    note text,
201    fix smallint,
202    status smallint NOT NULL DEFAULT 1,
203    del_flg smallint NOT NULL DEFAULT 0,
204    creator_id int NOT NULL,
205    create_date timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
206    update_date timestamp NOT NULL,
207    payment_image text,
208    upper_rule numeric,
209    charge_flg smallint DEFAULT 1,
210    rule_min numeric,
211    upper_rule_max numeric,
212    module_id int,
213    module_path text,
214    memo01 text,
215    memo02 text,
216    memo03 text,
217    memo04 text,
218    memo05 text,
219    memo06 text,
220    memo07 text,
221    memo08 text,
222    memo09 text,
223    memo10 text,
224    PRIMARY KEY (payment_id)
225) ENGINE=InnoDB;
226
227CREATE TABLE dtb_mailtemplate (
228    template_id int NOT NULL,
229    subject text,
230    header text,
231    footer text,
232    creator_id int NOT NULL,
233    del_flg smallint NOT NULL DEFAULT 0,
234    create_date timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
235    update_date timestamp NOT NULL
236) ENGINE=InnoDB;
237
238CREATE TABLE dtb_mailmaga_template (
239    template_id int NOT NULL,
240    subject text,
241    charge_image text,
242    mail_method int,
243    header text,
244    body text,
245    main_title text,
246    main_comment text,
247    main_product_id int,
248    sub_title text,
249    sub_comment text,
250    sub_product_id01 int,
251    sub_product_id02 int,
252    sub_product_id03 int,
253    sub_product_id04 int,
254    sub_product_id05 int,
255    sub_product_id06 int,
256    sub_product_id07 int,
257    sub_product_id08 int,
258    sub_product_id09 int,
259    sub_product_id10 int,
260    sub_product_id11 int,
261    sub_product_id12 int,
262    del_flg smallint NOT NULL DEFAULT 0,
263    creator_id int NOT NULL,
264    create_date timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
265    update_date timestamp NOT NULL,
266    PRIMARY KEY (template_id)
267) ENGINE=InnoDB;
268
269CREATE TABLE dtb_send_history (
270    send_id int  NOT NULL,
271    mail_method smallint,
272    subject text,
273    body text,
274    send_count int,
275    complete_count int NOT NULL DEFAULT 0,
276    start_date datetime,
277    end_date datetime,
278    search_data text,
279    del_flg smallint NOT NULL DEFAULT 0,
280    creator_id int NOT NULL,
281    create_date timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
282    update_date timestamp NOT NULL,
283    PRIMARY KEY (send_id)
284) ENGINE=InnoDB;
285
286CREATE TABLE dtb_send_customer (
287    customer_id int,
288    send_id int NOT NULL,
289    email text,
290    name text,
291    send_flag smallint,
292    PRIMARY KEY (send_id, customer_id)
293) ENGINE=InnoDB;
294
295CREATE TABLE dtb_products (
296    product_id int  NOT NULL,
297    name text NOT NULL,
298    maker_id int,
299    status smallint NOT NULL DEFAULT 2,
300    comment1 text,
301    comment2 text,
302    comment3 mediumtext,
303    comment4 text,
304    comment5 text,
305    comment6 text,
306    note text,
307    main_list_comment text,
308    main_list_image text,
309    main_comment mediumtext,
310    main_image text,
311    main_large_image text,
312    sub_title1 text,
313    sub_comment1 mediumtext,
314    sub_image1 text,
315    sub_large_image1 text,
316    sub_title2 text,
317    sub_comment2 mediumtext,
318    sub_image2 text,
319    sub_large_image2 text,
320    sub_title3 text,
321    sub_comment3 mediumtext,
322    sub_image3 text,
323    sub_large_image3 text,
324    sub_title4 text,
325    sub_comment4 mediumtext,
326    sub_image4 text,
327    sub_large_image4 text,
328    sub_title5 text,
329    sub_comment5 mediumtext,
330    sub_image5 text,
331    sub_large_image5 text,
332    sub_title6 text,
333    sub_comment6 mediumtext,
334    sub_image6 text,
335    sub_large_image6 text,
336    del_flg smallint NOT NULL DEFAULT 0,
337    creator_id int NOT NULL,
338    create_date timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
339    update_date timestamp NOT NULL,
340    deliv_date_id int,
341    PRIMARY KEY (product_id)
342) ENGINE=InnoDB;
343
344CREATE TABLE dtb_products_class (
345    product_class_id int  NOT NULL,
346    product_id int NOT NULL,
347    class_combination_id int,
348    product_type_id int NOT NULL DEFAULT 0,
349    product_code text,
350    stock numeric,
351    stock_unlimited smallint NOT NULL DEFAULT 0,
352    sale_limit numeric,
353    price01 numeric,
354    price02 numeric NOT NULL,
355    deliv_fee numeric,
356    point_rate numeric,
357    creator_id int NOT NULL,
358    create_date timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
359    update_date timestamp NOT NULL,
360    down_filename text,
361    down_realfilename text,
362    del_flg smallint NOT NULL DEFAULT 0,
363    PRIMARY KEY (product_class_id)
364) ENGINE=InnoDB;
365
366CREATE TABLE dtb_class (
367    class_id int  NOT NULL,
368    name text,
369    rank int,
370    creator_id int NOT NULL,
371    create_date timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
372    update_date timestamp NOT NULL,
373    del_flg smallint NOT NULL DEFAULT 0,
374    PRIMARY KEY (class_id)
375) ENGINE=InnoDB;
376
377CREATE TABLE dtb_classcategory (
378    classcategory_id int  NOT NULL,
379    name text,
380    class_id int NOT NULL,
381    rank int,
382    creator_id int NOT NULL,
383    create_date timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
384    update_date timestamp NOT NULL,
385    del_flg smallint NOT NULL DEFAULT 0,
386    PRIMARY KEY (classcategory_id)
387) ENGINE=InnoDB;
388
389CREATE TABLE dtb_class_combination (
390    class_combination_id int NOT NULL,
391    parent_class_combination_id int,
392    classcategory_id int NOT NULL,
393    level int,
394    PRIMARY KEY(class_combination_id)
395) ENGINE=InnoDB;
396
397CREATE TABLE dtb_category (
398    category_id int  NOT NULL,
399    category_name text,
400    parent_category_id int NOT NULL DEFAULT 0,
401    level int NOT NULL,
402    rank int,
403    creator_id int NOT NULL,
404    create_date timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
405    update_date timestamp NOT NULL,
406    del_flg smallint NOT NULL DEFAULT 0,
407    PRIMARY KEY (category_id)
408) ENGINE=InnoDB;
409
410CREATE TABLE dtb_product_categories (
411    product_id int NOT NULL,
412    category_id int NOT NULL,
413    rank int NOT NULL,
414    PRIMARY KEY(product_id, category_id)
415) ENGINE=InnoDB;
416
417CREATE TABLE dtb_product_status (
418    product_status_id smallint NOT NULL,
419    product_id int NOT NULL,
420    creator_id int NOT NULL,
421    create_date timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
422    update_date timestamp NOT NULL,
423    del_flg smallint NOT NULL DEFAULT 0,
424    PRIMARY KEY(product_status_id, product_id)
425) ENGINE=InnoDB;
426
427CREATE TABLE dtb_bat_order_daily (
428    total_order numeric NOT NULL DEFAULT 0,
429    member numeric NOT NULL DEFAULT 0,
430    nonmember numeric NOT NULL DEFAULT 0,
431    men numeric NOT NULL DEFAULT 0,
432    women numeric NOT NULL DEFAULT 0,
433    men_member numeric NOT NULL DEFAULT 0,
434    men_nonmember numeric NOT NULL DEFAULT 0,
435    women_member numeric NOT NULL DEFAULT 0,
436    women_nonmember numeric NOT NULL DEFAULT 0,
437    total numeric NOT NULL DEFAULT 0,
438    total_average numeric NOT NULL DEFAULT 0,
439    order_date datetime NOT NULL,
440    create_date timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
441    year smallint NOT NULL,
442    month smallint NOT NULL,
443    day smallint NOT NULL,
444    wday smallint NOT NULL,
445    key_day text NOT NULL,
446    key_month text NOT NULL,
447    key_year text NOT NULL,
448    key_wday text NOT NULL
449) ENGINE=InnoDB;
450
451CREATE TABLE dtb_bat_order_daily_hour (
452    total_order numeric NOT NULL DEFAULT 0,
453    member numeric NOT NULL DEFAULT 0,
454    nonmember numeric NOT NULL DEFAULT 0,
455    men numeric NOT NULL DEFAULT 0,
456    women numeric NOT NULL DEFAULT 0,
457    men_member numeric NOT NULL DEFAULT 0,
458    men_nonmember numeric NOT NULL DEFAULT 0,
459    women_member numeric NOT NULL DEFAULT 0,
460    women_nonmember numeric NOT NULL DEFAULT 0,
461    total numeric NOT NULL DEFAULT 0,
462    total_average numeric NOT NULL DEFAULT 0,
463    hour smallint NOT NULL DEFAULT 0,
464    order_date datetime,
465    create_date timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
466) ENGINE=InnoDB;
467
468CREATE TABLE dtb_recommend_products (
469    product_id int NOT NULL,
470    recommend_product_id int NOT NULL,
471    rank int NOT NULL,
472    comment text,
473    status smallint NOT NULL DEFAULT 0,
474    creator_id int NOT NULL,
475    create_date timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
476    update_date timestamp NOT NULL
477) ENGINE=InnoDB;
478
479CREATE TABLE dtb_review (
480    review_id int  NOT NULL,
481    product_id int NOT NULL,
482    reviewer_name text NOT NULL,
483    reviewer_url text,
484    sex smallint,
485    customer_id int,
486    recommend_level smallint NOT NULL,
487    title text NOT NULL,
488    comment text NOT NULL,
489    status smallint DEFAULT 2,
490    creator_id int NOT NULL,
491    create_date timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
492    update_date timestamp NOT NULL,
493    del_flg smallint NOT NULL DEFAULT 0,
494    PRIMARY KEY (review_id)
495) ENGINE=InnoDB;
496
497CREATE TABLE dtb_customer_favorite_products (
498    customer_id int NOT NULL,
499    product_id int NOT NULL,
500    create_date timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
501    update_date timestamp NOT NULL,
502    PRIMARY KEY (customer_id, product_id)
503) ENGINE=InnoDB;
504
505CREATE TABLE dtb_category_count (
506    category_id int NOT NULL,
507    product_count int NOT NULL,
508    create_date timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
509) ENGINE=InnoDB;
510
511CREATE TABLE dtb_category_total_count (
512    category_id int NOT NULL,
513    product_count int,
514    create_date timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
515) ENGINE=InnoDB;
516
517CREATE TABLE dtb_news (
518    news_id int  NOT NULL,
519    news_date datetime,
520    rank int,
521    news_title text NOT NULL,
522    news_comment text,
523    news_url text,
524    news_select smallint NOT NULL DEFAULT 0,
525    link_method text,
526    creator_id int NOT NULL,
527    create_date timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
528    update_date timestamp NOT NULL,
529    del_flg smallint NOT NULL DEFAULT 0,
530    PRIMARY KEY (news_id)
531) ENGINE=InnoDB;
532
533CREATE TABLE dtb_best_products (
534    best_id int  NOT NULL,
535    category_id int NOT NULL,
536    rank int NOT NULL DEFAULT 0,
537    product_id int NOT NULL,
538    title text,
539    comment text,
540    creator_id int NOT NULL,
541    create_date timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
542    update_date timestamp NOT NULL,
543    del_flg smallint NOT NULL DEFAULT 0,
544    PRIMARY KEY (best_id)
545) ENGINE=InnoDB;
546
547CREATE TABLE dtb_mail_history (
548    send_id int  NOT NULL,
549    order_id int NOT NULL,
550    send_date datetime,
551    template_id int,
552    creator_id int NOT NULL,
553    subject text,
554    mail_body text,
555    PRIMARY KEY (send_id)
556) ENGINE=InnoDB;
557
558CREATE TABLE dtb_customer (
559    customer_id int  NOT NULL,
560    name01 text NOT NULL,
561    name02 text NOT NULL,
562    kana01 text NOT NULL,
563    kana02 text NOT NULL,
564    zip01 text,
565    zip02 text,
566    pref smallint,
567    addr01 text,
568    addr02 text,
569    email text NOT NULL,
570    email_mobile text,
571    tel01 text,
572    tel02 text,
573    tel03 text,
574    fax01 text,
575    fax02 text,
576    fax03 text,
577    sex smallint,
578    job smallint,
579    birth datetime,
580    password text,
581    reminder smallint,
582    reminder_answer text,
583    salt text,
584    secret_key varchar(50) NOT NULL UNIQUE,
585    first_buy_date datetime,
586    last_buy_date datetime,
587    buy_times numeric DEFAULT 0,
588    buy_total numeric DEFAULT 0,
589    point numeric DEFAULT 0,
590    note text,
591    status smallint NOT NULL DEFAULT 1,
592    create_date timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
593    update_date timestamp NOT NULL,
594    del_flg smallint NOT NULL DEFAULT 0,
595    mobile_phone_id text,
596    mailmaga_flg smallint,
597    PRIMARY KEY (customer_id)
598) ENGINE=InnoDB;
599
600CREATE TABLE dtb_order (
601    order_id int  NOT NULL,
602    order_temp_id text,
603    customer_id int NOT NULL,
604    message text,
605    order_name01 text,
606    order_name02 text,
607    order_kana01 text,
608    order_kana02 text,
609    order_email text,
610    order_tel01 text,
611    order_tel02 text,
612    order_tel03 text,
613    order_fax01 text,
614    order_fax02 text,
615    order_fax03 text,
616    order_zip01 text,
617    order_zip02 text,
618    order_pref smallint,
619    order_addr01 text,
620    order_addr02 text,
621    order_sex smallint,
622    order_birth datetime,
623    order_job int,
624    subtotal numeric,
625    discount numeric,
626    deliv_fee numeric, 
627    charge numeric,
628    use_point numeric,
629    add_point numeric,
630    birth_point numeric DEFAULT 0,
631    tax numeric,
632    total numeric,
633    payment_total numeric,
634    payment_id int,
635    payment_method text,
636    note text,
637    status smallint,
638    create_date timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
639    update_date timestamp NOT NULL,
640    commit_date datetime,
641    payment_date datetime,
642    device_type_id int,
643    del_flg smallint NOT NULL DEFAULT 0,
644    memo01 text,
645    memo02 text,
646    memo03 text,
647    memo04 text,
648    memo05 text,
649    memo06 text,
650    memo07 text,
651    memo08 text,
652    memo09 text,
653    memo10 text,
654    PRIMARY KEY (order_id)
655) ENGINE=InnoDB;
656
657CREATE TABLE dtb_order_temp (
658    order_temp_id text NOT NULL,
659    customer_id int NOT NULL,
660    message text,
661    order_name01 text,
662    order_name02 text,
663    order_kana01 text,
664    order_kana02 text,
665    order_email text,
666    order_tel01 text,
667    order_tel02 text,
668    order_tel03 text,
669    order_fax01 text,
670    order_fax02 text,
671    order_fax03 text,
672    order_zip01 text,
673    order_zip02 text,
674    order_pref smallint,
675    order_addr01 text,
676    order_addr02 text,
677    order_sex smallint,
678    order_birth datetime,
679    order_job int,
680    subtotal numeric,
681    discount numeric,
682    deliv_fee numeric,
683    charge numeric,
684    use_point numeric,
685    add_point numeric,
686    birth_point numeric DEFAULT 0,
687    tax numeric,
688    total numeric,
689    payment_total numeric,
690    payment_id int,
691    payment_method text,
692    note text,
693    mail_flag smallint,
694    status smallint,
695    deliv_check smallint,
696    point_check smallint,
697    create_date timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
698    update_date timestamp NOT NULL,
699    device_type_id int,
700    del_flg smallint NOT NULL DEFAULT 0,
701    order_id int,
702    memo01 text,
703    memo02 text,
704    memo03 text,
705    memo04 text,
706    memo05 text,
707    memo06 text,
708    memo07 text,
709    memo08 text,
710    memo09 text,
711    memo10 text,
712    session text
713) ENGINE=InnoDB;
714
715CREATE TABLE dtb_shipping (
716    shipping_id int NOT NULL,
717    order_id int NOT NULL,
718    shipping_name01 text,
719    shipping_name02 text,
720    shipping_kana01 text,
721    shipping_kana02 text,
722    shipping_tel01 text,
723    shipping_tel02 text,
724    shipping_tel03 text,
725    shipping_fax01 text,
726    shipping_fax02 text,
727    shipping_fax03 text,
728    shipping_pref smallint,
729    shipping_zip01 text,
730    shipping_zip02 text,
731    shipping_addr01 text,
732    shipping_addr02 text,
733    deliv_id int NOT NULL,
734    time_id int,
735    shipping_time text,
736    shipping_num text,
737    shipping_date datetime,
738    shipping_commit_date datetime,
739    rank int,
740    create_date timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
741    update_date timestamp NOT NULL,
742    del_flg smallint NOT NULL DEFAULT 0,
743    PRIMARY KEY (shipping_id, order_id)
744) ENGINE=InnoDB;
745
746CREATE TABLE dtb_shipment_item (
747    shipping_id int NOT NULL,
748    product_class_id int NOT NULL,
749    order_id int NOT NULL,
750    product_name text NOT NULL,
751    product_code text,
752    classcategory_name1 text,
753    classcategory_name2 text,
754    price numeric,
755    quantity numeric,
756    PRIMARY KEY (shipping_id, product_class_id, order_id)
757) ENGINE=InnoDB;
758
759CREATE TABLE dtb_other_deliv (
760    other_deliv_id int  NOT NULL,
761    customer_id int NOT NULL,
762    name01 text,
763    name02 text,
764    kana01 text,
765    kana02 text,
766    zip01 text,
767    zip02 text,
768    pref smallint,
769    addr01 text,
770    addr02 text,
771    tel01 text,
772    tel02 text,
773    tel03 text,
774    PRIMARY KEY (other_deliv_id)
775) ENGINE=InnoDB;
776
777CREATE TABLE dtb_order_detail (
778    order_id int NOT NULL,
779    product_id int NOT NULL,
780    product_class_id int NOT NULL,
781    product_name text NOT NULL,
782    product_code text,
783    classcategory_name1 text,
784    classcategory_name2 text,
785    price numeric,
786    quantity numeric,
787    point_rate numeric
788) ENGINE=InnoDB;
789
790CREATE TABLE dtb_member (
791    member_id int  NOT NULL,
792    name text,
793    department text,
794    login_id text NOT NULL,
795    password text NOT NULL,
796    salt text NOT NULL,
797    authority smallint NOT NULL,
798    rank int NOT NULL DEFAULT 0,
799    work smallint NOT NULL DEFAULT 1,
800    del_flg smallint NOT NULL DEFAULT 0,
801    creator_id int NOT NULL,
802    create_date timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
803    update_date timestamp NOT NULL,
804    login_date datetime,
805    PRIMARY KEY (member_id)
806) ENGINE=InnoDB;
807
808CREATE TABLE dtb_bat_relate_products (
809    product_id int,
810    relate_product_id int,
811    customer_id int,
812    create_date timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
813) ENGINE=InnoDB;
814
815CREATE TABLE dtb_pagelayout (
816    device_type_id int NOT NULL,
817    page_id int  NOT NULL,
818    page_name text,
819    url text NOT NULL,
820    filename text,
821    header_chk smallint DEFAULT 1,
822    footer_chk smallint DEFAULT 1,
823    edit_flg smallint DEFAULT 1,
824    author text,
825    description text,
826    keyword text,
827    update_url text,
828    create_date timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
829    update_date timestamp NOT NULL,
830    PRIMARY KEY (device_type_id, page_id)
831) ENGINE=InnoDB;
832
833CREATE TABLE dtb_bloc (
834    device_type_id int NOT NULL,
835    bloc_id int  NOT NULL,
836    bloc_name text,
837    tpl_path text,
838    filename varchar(50) NOT NULL,
839    create_date timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
840    update_date timestamp NOT NULL,
841    php_path text,
842    deletable_flg smallint NOT NULL DEFAULT 1,
843    PRIMARY KEY (device_type_id, bloc_id),
844    UNIQUE (device_type_id, filename)
845) ENGINE=InnoDB;
846
847CREATE TABLE dtb_blocposition (
848    device_type_id int NOT NULL,
849    page_id int NOT NULL,
850    target_id int NOT NULL,
851    bloc_id int NOT NULL,
852    bloc_row int,
853    anywhere smallint DEFAULT 0 NOT NULL,
854    PRIMARY KEY (device_type_id, page_id, target_id, bloc_id)
855) ENGINE=InnoDB;
856
857CREATE TABLE dtb_csv (
858    no int,
859    csv_id int NOT NULL,
860    col text,
861    disp_name text,
862    rank int,
863    rw_flg smallint DEFAULT 1,
864    status smallint NOT NULL DEFAULT 1,
865    create_date timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
866    update_date timestamp NOT NULL,
867    mb_convert_kana_option text,
868    size_const_type text,
869    error_check_types text,
870    PRIMARY KEY (no)
871) ENGINE=InnoDB;
872
873CREATE TABLE dtb_csv_sql (
874    sql_id int,
875    sql_name text NOT NULL,
876    csv_sql text,
877    create_date timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
878    update_date timestamp NOT NULL,
879    PRIMARY KEY (sql_id)
880) ENGINE=InnoDB;
881
882CREATE TABLE dtb_templates (
883    template_code varchar(50) NOT NULL,
884    device_type_id int NOT NULL,
885    template_name text,
886    create_date timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
887    update_date timestamp NOT NULL,
888    PRIMARY KEY (template_code)
889) ENGINE=InnoDB;
890
891CREATE TABLE dtb_table_comment (
892    id int,
893    table_name text,
894    column_name text,
895    description text,
896    PRIMARY KEY (id)
897) ENGINE=InnoDB;
898
899CREATE TABLE dtb_maker (
900    maker_id int NOT NULL,
901    name text NOT NULL,
902    rank int NOT NULL DEFAULT 0,
903    creator_id int NOT NULL,
904    create_date timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
905    update_date timestamp NOT NULL,
906    del_flg smallint NOT NULL DEFAULT 0,
907    PRIMARY KEY (maker_id)
908) ENGINE=InnoDB;
909
910CREATE TABLE dtb_maker_count (
911    maker_id int NOT NULL,
912    product_count int NOT NULL,
913    create_date timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
914) ENGINE=InnoDB;
915
916CREATE TABLE mtb_pref (
917    id smallint,
918    name text,
919    rank smallint NOT NULL DEFAULT 0,
920    PRIMARY KEY (id)
921) ENGINE=InnoDB;
922
923CREATE TABLE mtb_permission (
924    id text,
925    name text,
926    rank smallint NOT NULL DEFAULT 0,
927    PRIMARY KEY (id(32))
928) ENGINE=InnoDB;
929
930CREATE TABLE mtb_disable_logout (
931    id smallint,
932    name text,
933    rank smallint NOT NULL DEFAULT 0,
934    PRIMARY KEY (id)
935) ENGINE=InnoDB;
936
937CREATE TABLE mtb_authority (
938    id smallint,
939    name text,
940    rank smallint NOT NULL DEFAULT 0,
941    PRIMARY KEY (id)
942) ENGINE=InnoDB;
943
944CREATE TABLE mtb_work (
945    id smallint,
946    name text,
947    rank smallint NOT NULL DEFAULT 0,
948    PRIMARY KEY (id)
949) ENGINE=InnoDB;
950
951CREATE TABLE mtb_disp (
952    id smallint,
953    name text,
954    rank smallint NOT NULL DEFAULT 0,
955    PRIMARY KEY (id)
956) ENGINE=InnoDB;
957
958CREATE TABLE mtb_class (
959    id smallint,
960    name text,
961    rank smallint NOT NULL DEFAULT 0,
962    PRIMARY KEY (id)
963) ENGINE=InnoDB;
964
965CREATE TABLE mtb_status (
966    id smallint,
967    name text,
968    rank smallint NOT NULL DEFAULT 0,
969    PRIMARY KEY (id)
970) ENGINE=InnoDB;
971
972CREATE TABLE mtb_status_image (
973    id smallint,
974    name text,
975    rank smallint NOT NULL DEFAULT 0,
976    PRIMARY KEY (id)
977) ENGINE=InnoDB;
978
979CREATE TABLE mtb_allowed_tag (
980    id smallint,
981    name text,
982    rank smallint NOT NULL DEFAULT 0,
983    PRIMARY KEY (id)
984) ENGINE=InnoDB;
985
986CREATE TABLE mtb_page_max (
987    id smallint,
988    name text,
989    rank smallint NOT NULL DEFAULT 0,
990    PRIMARY KEY (id)
991) ENGINE=InnoDB;
992
993CREATE TABLE mtb_magazine_type (
994    id smallint,
995    name text,
996    rank smallint NOT NULL DEFAULT 0,
997    PRIMARY KEY (id)
998) ENGINE=InnoDB;
999
1000CREATE TABLE mtb_mail_magazine_type (
1001    id smallint,
1002    name text,
1003    rank smallint NOT NULL DEFAULT 0,
1004    PRIMARY KEY (id)
1005) ENGINE=InnoDB;
1006
1007CREATE TABLE mtb_recommend (
1008    id smallint,
1009    name text,
1010    rank smallint NOT NULL DEFAULT 0,
1011    PRIMARY KEY (id)
1012) ENGINE=InnoDB;
1013
1014CREATE TABLE mtb_taxrule (
1015    id smallint,
1016    name text,
1017    rank smallint NOT NULL DEFAULT 0,
1018    PRIMARY KEY (id)
1019) ENGINE=InnoDB;
1020
1021CREATE TABLE mtb_mail_template (
1022    id smallint,
1023    name text,
1024    rank smallint NOT NULL DEFAULT 0,
1025    PRIMARY KEY (id)
1026) ENGINE=InnoDB;
1027
1028CREATE TABLE mtb_mail_tpl_path (
1029    id smallint,
1030    name text,
1031    rank smallint NOT NULL DEFAULT 0,
1032    PRIMARY KEY (id)
1033) ENGINE=InnoDB;
1034
1035CREATE TABLE mtb_job (
1036    id smallint,
1037    name text,
1038    rank smallint NOT NULL DEFAULT 0,
1039    PRIMARY KEY (id)
1040) ENGINE=InnoDB;
1041
1042CREATE TABLE mtb_reminder (
1043    id smallint,
1044    name text,
1045    rank smallint NOT NULL DEFAULT 0,
1046    PRIMARY KEY (id)
1047) ENGINE=InnoDB;
1048
1049CREATE TABLE mtb_sex (
1050    id smallint,
1051    name text,
1052    rank smallint NOT NULL DEFAULT 0,
1053    PRIMARY KEY (id)
1054) ENGINE=InnoDB;
1055
1056CREATE TABLE mtb_page_rows (
1057    id smallint,
1058    name text,
1059    rank smallint NOT NULL DEFAULT 0,
1060    PRIMARY KEY (id)
1061) ENGINE=InnoDB;
1062
1063CREATE TABLE mtb_mail_type (
1064    id smallint,
1065    name text,
1066    rank smallint NOT NULL DEFAULT 0,
1067    PRIMARY KEY (id)
1068) ENGINE=InnoDB;
1069
1070CREATE TABLE mtb_order_status (
1071    id smallint,
1072    name text,
1073    rank smallint NOT NULL DEFAULT 0,
1074    PRIMARY KEY (id)
1075) ENGINE=InnoDB;
1076
1077CREATE TABLE mtb_product_status_color (
1078    id smallint,
1079    name text,
1080    rank smallint NOT NULL DEFAULT 0,
1081    PRIMARY KEY (id)
1082) ENGINE=InnoDB;
1083
1084CREATE TABLE mtb_order_status_color (
1085    id smallint,
1086    name text,
1087    rank smallint NOT NULL DEFAULT 0,
1088    PRIMARY KEY (id)
1089) ENGINE=InnoDB;
1090
1091CREATE TABLE mtb_wday (
1092    id smallint,
1093    name text,
1094    rank smallint NOT NULL DEFAULT 0,
1095    PRIMARY KEY (id)
1096) ENGINE=InnoDB;
1097
1098CREATE TABLE mtb_delivery_date (
1099    id smallint,
1100    name text,
1101    rank smallint NOT NULL DEFAULT 0,
1102    PRIMARY KEY (id)
1103) ENGINE=InnoDB;
1104
1105CREATE TABLE mtb_product_list_max (
1106    id smallint,
1107    name text,
1108    rank smallint NOT NULL DEFAULT 0,
1109    PRIMARY KEY (id)
1110) ENGINE=InnoDB;
1111
1112CREATE TABLE mtb_convenience (
1113    id smallint,
1114    name text,
1115    rank smallint NOT NULL DEFAULT 0,
1116    PRIMARY KEY (id)
1117) ENGINE=InnoDB;
1118
1119CREATE TABLE mtb_conveni_message (
1120    id smallint,
1121    name text,
1122    rank smallint NOT NULL DEFAULT 0,
1123    PRIMARY KEY (id)
1124) ENGINE=InnoDB;
1125
1126CREATE TABLE mtb_db (
1127    id smallint,
1128    name text,
1129    rank smallint NOT NULL DEFAULT 0,
1130    PRIMARY KEY (id)
1131) ENGINE=InnoDB;
1132
1133CREATE TABLE mtb_target (
1134    id smallint,
1135    name text,
1136    rank smallint NOT NULL DEFAULT 0,
1137    PRIMARY KEY (id)
1138) ENGINE=InnoDB;
1139
1140CREATE TABLE mtb_review_deny_url (
1141    id smallint,
1142    name text,
1143    rank smallint NOT NULL DEFAULT 0,
1144    PRIMARY KEY (id)
1145) ENGINE=InnoDB;
1146
1147CREATE TABLE mtb_mobile_domain (
1148    id smallint,
1149    name text,
1150    rank smallint NOT NULL DEFAULT 0,
1151    PRIMARY KEY (id)
1152) ENGINE=InnoDB;
1153
1154CREATE TABLE mtb_ownersstore_err (
1155    id smallint,
1156    name text,
1157    rank smallint NOT NULL DEFAULT 0,
1158    PRIMARY KEY (id)
1159) ENGINE=InnoDB;
1160
1161CREATE TABLE mtb_ownersstore_ips (
1162    id smallint,
1163    name text,
1164    rank smallint NOT NULL DEFAULT 0,
1165    PRIMARY KEY (id)
1166) ENGINE=InnoDB;
1167
1168CREATE TABLE mtb_constants (
1169    id text,
1170    name text,
1171    rank smallint NOT NULL DEFAULT 0,
1172    remarks text,
1173    PRIMARY KEY (id(64))
1174) ENGINE=InnoDB;
1175
1176CREATE TABLE mtb_product_type (
1177    id smallint,
1178    name text,
1179    rank smallint NOT NULL,
1180    PRIMARY KEY (id)
1181) ENGINE=InnoDB;
1182
1183CREATE TABLE mtb_device_type (
1184    id smallint,
1185    name text,
1186    rank smallint NOT NULL,
1187    PRIMARY KEY (id)
1188) ENGINE=InnoDB;
1189
1190CREATE TABLE dtb_mobile_ext_session_id (
1191    session_id text NOT NULL,
1192    param_key text,
1193    param_value text,
1194    url text,
1195    create_date timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
1196);
1197
1198CREATE TABLE dtb_module (
1199    module_id int NOT NULL UNIQUE,
1200    module_code text NOT NULL,
1201    module_name text NOT NULL,
1202    sub_data text,
1203    auto_update_flg smallint NOT NULL DEFAULT 0,
1204    del_flg smallint NOT NULL DEFAULT 0,
1205    create_date timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
1206    update_date timestamp NOT NULL
1207) ENGINE=InnoDB;
1208
1209CREATE TABLE dtb_session (
1210    sess_id varchar(50) NOT NULL,
1211    sess_data text,
1212    create_date timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
1213    update_date timestamp NOT NULL,
1214    PRIMARY KEY (sess_id)
1215) ENGINE=InnoDB;
1216
1217CREATE TABLE dtb_bkup (
1218    bkup_name varchar(50),
1219    bkup_memo text,
1220    create_date timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
1221    PRIMARY KEY (bkup_name)
1222) ENGINE=InnoDB;
1223
1224CREATE TABLE dtb_plugin (
1225    plugin_id int NOT NULL,
1226    plugin_name varchar(255) NOT NULL,
1227    enable smallint NOT NULL DEFAULT 0,
1228    del_flg smallint NOT NULL DEFAULT 0,
1229    class_name varchar(255) NOT NULL,
1230    create_date timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
1231    update_date timestamp NOT NULL,
1232    PRIMARY KEY (plugin_id)
1233) ENGINE=InnoDB;
1234
1235CREATE INDEX dtb_customer_mobile_phone_id_key ON dtb_customer (mobile_phone_id(64));
1236CREATE INDEX dtb_products_class_product_id_key ON dtb_products_class(product_id);
1237CREATE INDEX dtb_order_detail_product_id_key ON dtb_order_detail(product_id);
1238CREATE INDEX dtb_send_customer_customer_id_key ON dtb_send_customer(customer_id);
1239CREATE INDEX dtb_mobile_ext_session_id_param_key_key ON dtb_mobile_ext_session_id (param_key(64));
1240CREATE INDEX dtb_mobile_ext_session_id_param_value_key ON dtb_mobile_ext_session_id (param_value(64));
1241CREATE INDEX dtb_mobile_ext_session_id_url_key ON dtb_mobile_ext_session_id (url(64));
1242CREATE INDEX dtb_mobile_ext_session_id_create_date_key ON dtb_mobile_ext_session_id (create_date);
1243
1244CREATE TABLE dtb_index_list (
1245    table_name varchar(30) NOT NULL DEFAULT '',
1246    column_name varchar(30) NOT NULL DEFAULT '',
1247    recommend_flg smallint NOT NULL DEFAULT 0,
1248    recommend_comment text,
1249    PRIMARY KEY (table_name, column_name)
1250) ENGINE=InnoDB;
Note: See TracBrowser for help on using the repository browser.