forked from ronaldbradford/schema
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmagento.sql
4127 lines (3399 loc) · 154 KB
/
magento.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- SCHEMA - Magento 1.1.1
create table admin_assert
(
assert_id int(10) unsigned not null auto_increment,
assert_type national varchar(20) not null,
assert_data national text,
primary key (assert_id)
)
type = innodb;
alter table admin_assert comment 'Acl Asserts';
create table admin_role
(
role_id int(10) unsigned not null auto_increment,
parent_id int(10) unsigned not null default 0,
tree_level tinyint(3) unsigned not null default 0,
sort_order tinyint(3) unsigned not null default 0,
role_type national char(1) not null default '0',
user_id int(11) unsigned not null default 0,
role_name national varchar(50) not null,
primary key (role_id)
)
type = innodb;
alter table admin_role comment 'Acl Roles';
create index parent_id on admin_role
(
);
create index tree_level on admin_role
(
tree_level
);
create table admin_rule
(
rule_id int(10) unsigned not null auto_increment,
role_id int(10) unsigned not null default 0,
resource_id national varchar(255) not null,
privileges national varchar(20) not null,
assert_id int(10) unsigned not null default 0,
role_type national char(1),
permission national varchar(10),
primary key (rule_id)
)
type = innodb;
alter table admin_rule comment 'Acl Rules';
create index resource on admin_rule
(
);
create index role_id on admin_rule
(
);
create table admin_user
(
user_id mediumint(9) unsigned not null auto_increment,
firstname national varchar(32) not null,
lastname national varchar(32) not null,
email national varchar(128) not null,
username national varchar(40) not null,
password national varchar(40) not null,
created datetime not null default 0000-00-00 00:00:00,
modified datetime,
logdate datetime,
lognum smallint(5) unsigned not null default 0,
reload_acl_flag tinyint(1) not null default 0,
is_active tinyint(1) not null default 1,
extra national text,
primary key (user_id)
)
type = innodb;
alter table admin_user comment 'Users';
create table adminnotification_inbox
(
notification_id int(10) unsigned not null auto_increment,
severity tinyint(3) unsigned not null default 0,
date_added datetime not null,
title national varchar(255) not null,
description national text,
url national varchar(255) not null,
is_read tinyint(1) unsigned not null default 0,
is_remove tinyint(1) unsigned not null default 0,
primary key (notification_id)
)
type = innodb type = innodb;
create index idx_is_read on adminnotification_inbox
(
is_read
);
create index idx_is_remove on adminnotification_inbox
(
is_remove
);
create index idx_severity on adminnotification_inbox
(
severity
);
create table api_assert
(
assert_id int(10) unsigned not null auto_increment,
assert_type national varchar(20) not null,
assert_data national text,
primary key (assert_id)
)
type = innodb type = innodb;
alter table api_assert comment 'Api Acl Asserts';
create table api_role
(
role_id int(10) unsigned not null auto_increment,
parent_id int(10) unsigned not null default 0,
tree_level tinyint(3) unsigned not null default 0,
sort_order tinyint(3) unsigned not null default 0,
role_type national char(1) not null default '0',
user_id int(11) unsigned not null default 0,
role_name national varchar(50) not null,
primary key (role_id)
)
type = innodb type = innodb;
alter table api_role comment 'Api Acl Roles';
create index parent_id on api_role
(
);
create index tree_level on api_role
(
tree_level
);
create table api_rule
(
rule_id int(10) unsigned not null auto_increment,
role_id int(10) unsigned not null default 0,
resource_id national varchar(255) not null,
privileges national varchar(20) not null,
assert_id int(10) unsigned not null default 0,
role_type national char(1),
permission national varchar(10),
primary key (rule_id)
)
type = innodb type = innodb;
alter table api_rule comment 'Api Acl Rules';
create index resource on api_rule
(
);
create index role_id on api_rule
(
);
create table api_user
(
user_id mediumint(9) unsigned not null auto_increment,
firstname national varchar(32) not null,
lastname national varchar(32) not null,
email national varchar(128) not null,
username national varchar(40) not null,
api_key national varchar(40) not null,
created datetime not null default 0000-00-00 00:00:00,
modified datetime,
logdate datetime,
lognum smallint(5) unsigned not null default 0,
reload_acl_flag tinyint(1) not null default 0,
is_active tinyint(1) not null default 1,
primary key (user_id)
)
type = innodb type = innodb;
alter table api_user comment 'Api Users';
create table catalog_category_entity
(
entity_id int(10) unsigned not null auto_increment,
entity_type_id smallint(8) unsigned not null default 0,
attribute_set_id smallint(5) unsigned not null default 0,
parent_id int(10) unsigned not null default 0,
created_at datetime not null default 0000-00-00 00:00:00,
updated_at datetime not null default 0000-00-00 00:00:00,
path national varchar(255) not null,
position int(11) not null,
level int(11) not null,
primary key (entity_id)
)
type = innodb;
alter table catalog_category_entity comment 'Category Entities';
create index idx_level on catalog_category_entity
(
level
);
create table catalog_category_entity_datetime
(
value_id int(11) not null auto_increment,
entity_type_id smallint(5) unsigned not null default 0,
attribute_id smallint(5) unsigned not null default 0,
store_id smallint(5) unsigned not null default 0,
entity_id int(10) unsigned not null default 0,
value datetime not null default 0000-00-00 00:00:00,
primary key (value_id)
)
type = innodb;
alter table catalog_category_entity_datetime
add unique idx_base (entity_type_id, entity_id, attribute_id, store_id);
create table catalog_category_entity_decimal
(
value_id int(11) not null auto_increment,
entity_type_id smallint(5) unsigned not null default 0,
attribute_id smallint(5) unsigned not null default 0,
store_id smallint(5) unsigned not null default 0,
entity_id int(10) unsigned not null default 0,
value decimal(12,4) not null default 0.0000,
primary key (value_id)
)
type = innodb;
alter table catalog_category_entity_decimal
add unique idx_base (entity_type_id, entity_id, attribute_id, store_id);
create table catalog_category_entity_int
(
value_id int(11) not null auto_increment,
entity_type_id smallint(5) unsigned not null default 0,
attribute_id smallint(5) unsigned not null default 0,
store_id smallint(5) unsigned not null default 0,
entity_id int(10) unsigned not null default 0,
value int(11) not null default 0,
primary key (value_id)
)
type = innodb;
alter table catalog_category_entity_int
add unique idx_base (entity_type_id, entity_id, attribute_id, store_id);
create table catalog_category_entity_text
(
value_id int(11) not null auto_increment,
entity_type_id smallint(5) unsigned not null default 0,
attribute_id smallint(5) unsigned not null default 0,
store_id smallint(5) unsigned not null default 0,
entity_id int(10) unsigned not null default 0,
value national text not null,
primary key (value_id)
)
type = innodb;
alter table catalog_category_entity_text
add unique idx_base (entity_type_id, entity_id, attribute_id, store_id);
create table catalog_category_entity_varchar
(
value_id int(11) not null auto_increment,
entity_type_id smallint(5) unsigned not null default 0,
attribute_id smallint(5) unsigned not null default 0,
store_id smallint(5) unsigned not null default 0,
entity_id int(10) unsigned not null default 0,
value national varchar(255) not null,
primary key (value_id)
)
type = innodb;
alter table catalog_category_entity_varchar
add unique idx_base (entity_type_id, entity_id, attribute_id, store_id);
create table catalog_category_product
(
category_id int(10) unsigned not null default 0,
product_id int(10) unsigned not null default 0,
position int(10) unsigned not null default 0
)
type = innodb;
alter table catalog_category_product
add unique unq_category_product (category_id, product_id);
create table catalog_category_product_index
(
category_id int(10) unsigned not null default 0,
product_id int(10) unsigned not null default 0,
position int(10) unsigned not null default 0,
is_parent tinyint(1) unsigned not null default 0
);
alter table catalog_category_product_index
add unique unq_category_product (category_id, product_id);
create index idx_category_position on catalog_category_product_index
(
);
create table catalog_compare_item
(
catalog_compare_item_id int(11) unsigned not null auto_increment,
visitor_id int(11) unsigned not null default 0,
customer_id int(11) unsigned,
product_id int(11) unsigned not null default 0,
primary key (catalog_compare_item_id)
)
type = innodb;
create index idx_customer_products on catalog_compare_item
(
);
create index idx_visitor_products on catalog_compare_item
(
);
create table catalog_product_bundle_option
(
option_id int(10) unsigned not null auto_increment,
parent_id int(10) unsigned not null,
required tinyint(1) unsigned not null default 0,
position int(10) unsigned not null default 0,
type national varchar(255) not null,
primary key (option_id)
)
type = innodb;
alter table catalog_product_bundle_option comment 'Bundle Options';
create table catalog_product_bundle_option_value
(
value_id int(10) unsigned not null auto_increment,
option_id int(10) unsigned not null,
store_id smallint(5) unsigned not null,
title national varchar(255) not null,
primary key (value_id)
)
type = innodb;
alter table catalog_product_bundle_option_value comment 'Bundle Selections';
create table catalog_product_bundle_selection
(
selection_id int(10) unsigned not null auto_increment,
option_id int(10) unsigned not null,
parent_product_id int(10) unsigned not null,
product_id int(10) unsigned not null,
position int(10) unsigned not null default 0,
is_default tinyint(1) unsigned not null default 0,
selection_price_type tinyint(1) unsigned not null default 0,
selection_price_value decimal(12,4) not null default 0.0000,
selection_qty decimal(12,4) not null default 0.0000,
selection_can_change_qty tinyint(1) not null default 0,
primary key (selection_id)
)
type = innodb type = innodb;
alter table catalog_product_bundle_selection comment 'Bundle Selections';
create table catalog_product_enabled_index
(
product_id int(10) unsigned not null default 0,
store_id smallint(5) unsigned not null default 0,
visibility smallint(5) unsigned not null default 0
);
alter table catalog_product_enabled_index
add unique unq_product_store (product_id, store_id);
create index idx_product_visibility_in_store on catalog_product_enabled_index
(
);
create table catalog_product_entity
(
entity_id int(10) unsigned not null auto_increment,
entity_type_id smallint(8) unsigned not null default 0,
attribute_set_id smallint(5) unsigned not null default 0,
type_id national varchar(32) not null default simple,
sku national varchar(64),
category_ids national text,
created_at datetime not null default 0000-00-00 00:00:00,
updated_at datetime not null default 0000-00-00 00:00:00,
has_options smallint(1) not null default 0,
primary key (entity_id)
)
type = innodb;
alter table catalog_product_entity comment 'Product Entities';
create index sku on catalog_product_entity
(
sku
);
create table catalog_product_entity_datetime
(
value_id int(11) not null auto_increment,
entity_type_id smallint(5) unsigned not null default 0,
attribute_id smallint(5) unsigned not null default 0,
store_id smallint(5) unsigned not null default 0,
entity_id int(10) unsigned not null default 0,
value datetime not null default 0000-00-00 00:00:00,
primary key (value_id)
)
type = innodb;
create index idx_attribute_value on catalog_product_entity_datetime
(
);
create table catalog_product_entity_decimal
(
value_id int(11) not null auto_increment,
entity_type_id smallint(5) unsigned not null default 0,
attribute_id smallint(5) unsigned not null default 0,
store_id smallint(5) unsigned not null default 0,
entity_id int(10) unsigned not null default 0,
value decimal(12,4) not null default 0.0000,
primary key (value_id)
)
type = innodb;
create index idx_attribute_value on catalog_product_entity_decimal
(
);
create table catalog_product_entity_gallery
(
value_id int(11) not null auto_increment,
entity_type_id smallint(5) unsigned not null default 0,
attribute_id smallint(5) unsigned not null default 0,
store_id smallint(5) unsigned not null default 0,
entity_id int(10) unsigned not null default 0,
position int(11) not null default 0,
value national varchar(255) not null,
primary key (value_id)
)
type = innodb;
create index idx_base on catalog_product_entity_gallery
(
);
create table catalog_product_entity_int
(
value_id int(11) not null auto_increment,
entity_type_id mediumint(8) unsigned not null default 0,
attribute_id smallint(5) unsigned not null default 0,
store_id smallint(5) unsigned not null default 0,
entity_id int(10) unsigned not null default 0,
value int(11) not null default 0,
primary key (value_id)
)
type = innodb;
create index idx_attribute_value on catalog_product_entity_int
(
);
create table catalog_product_entity_media_gallery
(
value_id int(11) unsigned not null auto_increment,
attribute_id smallint(5) unsigned not null default 0,
entity_id int(10) unsigned not null default 0,
value national varchar(255),
primary key (value_id)
)
type = innodb;
alter table catalog_product_entity_media_gallery comment 'Catalog Product Media Gallery';
create table catalog_product_entity_media_gallery_value
(
value_id int(11) unsigned not null default 0,
store_id smallint(5) unsigned not null default 0,
`label` national varchar(255),
position int(11) unsigned,
disabled tinyint(1) unsigned not null default 0,
primary key (value_id, store_id)
)
type = innodb;
alter table catalog_product_entity_media_gallery_value comment 'Catalog Product Media Gallery Values';
create table catalog_product_entity_text
(
value_id int(11) not null auto_increment,
entity_type_id mediumint(8) unsigned not null default 0,
attribute_id smallint(5) unsigned not null default 0,
store_id smallint(5) unsigned not null default 0,
entity_id int(10) unsigned not null default 0,
value national text not null,
primary key (value_id)
)
type = innodb;
create index idx_attribute_value on catalog_product_entity_text
(
);
create table catalog_product_entity_tier_price
(
value_id int(11) not null auto_increment,
entity_id int(10) unsigned not null default 0,
all_groups tinyint(1) unsigned not null default 1,
customer_group_id smallint(5) unsigned not null default 0,
qty decimal(12,4) not null default 1.0000,
value decimal(12,4) not null default 0.0000,
website_id smallint(5) unsigned not null,
primary key (value_id)
)
type = innodb;
create table catalog_product_entity_varchar
(
value_id int(11) not null auto_increment,
entity_type_id mediumint(8) unsigned not null default 0,
attribute_id smallint(5) unsigned not null default 0,
store_id smallint(5) unsigned not null default 0,
entity_id int(10) unsigned not null default 0,
value national varchar(255) not null,
primary key (value_id)
)
type = innodb;
create index idx_attribute_value on catalog_product_entity_varchar
(
);
create table catalog_product_link
(
link_id int(11) unsigned not null auto_increment,
product_id int(10) unsigned not null default 0,
linked_product_id int(10) unsigned not null default 0,
link_type_id tinyint(3) unsigned not null default 0,
primary key (link_id)
)
type = innodb;
alter table catalog_product_link comment 'Related Products';
create table catalog_product_link_attribute
(
product_link_attribute_id smallint(6) unsigned not null auto_increment,
link_type_id tinyint(3) unsigned not null default 0,
product_link_attribute_code national varchar(32) not null,
data_type national varchar(32) not null,
primary key (product_link_attribute_id)
)
type = innodb;
alter table catalog_product_link_attribute comment 'Attributes For Product Link';
create table catalog_product_link_attribute_decimal
(
value_id int(11) unsigned not null auto_increment,
product_link_attribute_id smallint(6) unsigned,
link_id int(11) unsigned,
value decimal(12,4) not null default 0.0000,
primary key (value_id)
)
type = innodb;
alter table catalog_product_link_attribute_decimal comment 'Decimal Attributes Values';
create table catalog_product_link_attribute_int
(
value_id int(11) unsigned not null auto_increment,
product_link_attribute_id smallint(6) unsigned,
link_id int(11) unsigned,
value int(11) not null default 0,
primary key (value_id)
)
type = innodb;
create table catalog_product_link_attribute_varchar
(
value_id int(11) unsigned not null auto_increment,
product_link_attribute_id smallint(6) unsigned not null default 0,
link_id int(11) unsigned,
value national varchar(255) not null,
primary key (value_id)
)
type = innodb;
alter table catalog_product_link_attribute_varchar comment 'Varchar Attributes Values';
create table catalog_product_link_type
(
link_type_id tinyint(3) unsigned not null auto_increment,
code national varchar(32) not null,
primary key (link_type_id)
)
type = innodb;
alter table catalog_product_link_type comment 'Types Of Product Link(Related, Superproduct, Bundles)';
create table catalog_product_option
(
option_id int(10) unsigned not null auto_increment,
product_id int(10) unsigned not null default 0,
type national varchar(50) not null,
is_require tinyint(1) not null default 1,
sku national varchar(64) not null,
max_characters int(10) unsigned,
file_extension national varchar(50),
sort_order int(10) unsigned not null default 0,
primary key (option_id)
)
type = innodb type = innodb;
create index catalog_product_option_product on catalog_product_option
(
product_id
);
create table catalog_product_option_price
(
option_price_id int(10) unsigned not null auto_increment,
option_id int(10) unsigned not null default 0,
store_id smallint(5) unsigned not null default 0,
price decimal(12,4) not null default 0.0000,
price_type national enum('fixed','percent') not null default fixed,
primary key (option_price_id)
)
type = innodb type = innodb;
create index catalog_product_option_price_option on catalog_product_option_price
(
option_id
);
create index catalog_product_option_title_store on catalog_product_option_price
(
store_id
);
create table catalog_product_option_title
(
option_title_id int(10) unsigned not null auto_increment,
option_id int(10) unsigned not null default 0,
store_id smallint(5) unsigned not null default 0,
title national varchar(50) not null,
primary key (option_title_id)
)
type = innodb type = innodb;
create index catalog_product_option_title_option on catalog_product_option_title
(
option_id
);
create index catalog_product_option_title_store on catalog_product_option_title
(
store_id
);
create table catalog_product_option_type_price
(
option_type_price_id int(10) unsigned not null auto_increment,
option_type_id int(10) unsigned not null default 0,
store_id smallint(5) unsigned not null default 0,
price decimal(12,4) not null default 0.0000,
price_type national enum('fixed','percent') not null default fixed,
primary key (option_type_price_id)
)
type = innodb type = innodb;
create index catalog_product_option_type_price_option_type on catalog_product_option_type_price
(
option_type_id
);
create index catalog_product_option_type_price_store on catalog_product_option_type_price
(
store_id
);
create table catalog_product_option_type_title
(
option_type_title_id int(10) unsigned not null auto_increment,
option_type_id int(10) unsigned not null default 0,
store_id smallint(5) unsigned not null default 0,
title national varchar(50) not null,
primary key (option_type_title_id)
)
type = innodb type = innodb;
create index catalog_product_option_type_title_option on catalog_product_option_type_title
(
option_type_id
);
create index catalog_product_option_type_title_store on catalog_product_option_type_title
(
store_id
);
create table catalog_product_option_type_value
(
option_type_id int(10) unsigned not null auto_increment,
option_id int(10) unsigned not null default 0,
sku national varchar(64) not null,
sort_order int(10) unsigned not null default 0,
primary key (option_type_id)
)
type = innodb type = innodb;
create index catalog_product_option_type_value_option on catalog_product_option_type_value
(
option_id
);
create table catalog_product_super_attribute
(
product_super_attribute_id int(10) unsigned not null auto_increment,
product_id int(10) unsigned not null default 0,
attribute_id smallint(5) unsigned not null default 0,
position smallint(5) unsigned not null default 0,
primary key (product_super_attribute_id)
)
type = innodb;
create table catalog_product_super_attribute_label
(
value_id int(10) unsigned not null auto_increment,
product_super_attribute_id int(10) unsigned not null default 0,
store_id smallint(5) unsigned not null default 0,
value national varchar(255) not null,
primary key (value_id)
)
type = innodb;
create table catalog_product_super_attribute_pricing
(
value_id int(10) unsigned not null auto_increment,
product_super_attribute_id int(10) unsigned not null default 0,
value_index national varchar(255) not null,
is_percent tinyint(1) unsigned default 0,
pricing_value decimal(10,4),
primary key (value_id)
)
type = innodb;
create table catalog_product_super_link
(
link_id int(10) unsigned not null auto_increment,
product_id int(10) unsigned not null default 0,
parent_id int(10) unsigned not null default 0,
primary key (link_id)
)
type = innodb;
create table catalog_product_website
(
product_id int(10) unsigned not null auto_increment,
website_id smallint(5) unsigned not null,
primary key (product_id, website_id)
)
type = innodb;
create table catalogindex_eav
(
store_id smallint(5) unsigned not null default 0,
entity_id int(10) unsigned not null default 0,
attribute_id smallint(5) unsigned not null default 0,
value int(11) not null default 0,
primary key (store_id, entity_id, attribute_id, value)
)
type = innodb;
create index idx_value on catalogindex_eav
(
value
);
create table catalogindex_minimal_price
(
index_id int(10) unsigned not null auto_increment,
store_id smallint(5) unsigned not null default 0,
entity_id int(10) unsigned not null default 0,
customer_group_id smallint(3) unsigned not null default 0,
qty decimal(12,4) unsigned not null default 0.0000,
value decimal(12,4) not null default 0.0000,
primary key (index_id)
)
type = innodb;
create index idx_qty on catalogindex_minimal_price
(
qty
);
create index idx_value on catalogindex_minimal_price
(
value
);
create table catalogindex_price
(
store_id smallint(5) unsigned not null default 0,
entity_id int(10) unsigned not null default 0,
attribute_id smallint(5) unsigned not null default 0,
customer_group_id smallint(3) unsigned not null default 0,
qty decimal(12,4) unsigned not null default 0.0000,
value decimal(12,4) not null default 0.0000
)
type = innodb;
create index fk_catalogindex_price_customer_group on catalogindex_price
(
customer_group_id
);
create index idx_qty on catalogindex_price
(
qty
);
create index idx_range_value on catalogindex_price
(
);
create index idx_value on catalogindex_price
(
value
);
create table cataloginventory_stock
(
stock_id smallint(4) unsigned not null auto_increment,
stock_name national varchar(255) not null,
primary key (stock_id)
)
type = innodb;
alter table cataloginventory_stock comment 'Catalog Inventory Stocks List';
create table cataloginventory_stock_item
(
item_id int(10) unsigned not null auto_increment,
product_id int(10) unsigned not null default 0,
stock_id smallint(4) unsigned not null default 0,
qty decimal(12,4) not null default 0.0000,
min_qty decimal(12,4) not null default 0.0000,
use_config_min_qty tinyint(1) unsigned not null default 1,
is_qty_decimal tinyint(1) unsigned not null default 0,
backorders tinyint(3) unsigned not null default 0,
use_config_backorders tinyint(1) unsigned not null default 1,
min_sale_qty decimal(12,4) not null default 1.0000,
use_config_min_sale_qty tinyint(1) unsigned not null default 1,
max_sale_qty decimal(12,4) not null default 0.0000,
use_config_max_sale_qty tinyint(1) unsigned not null default 1,
is_in_stock tinyint(1) unsigned not null default 0,
low_stock_date datetime,
notify_stock_qty decimal(12,4),
use_config_notify_stock_qty tinyint(1) unsigned not null default 1,
manage_stock tinyint(1) unsigned not null default 0,
use_config_manage_stock tinyint(1) unsigned not null default 1,
primary key (item_id)
)
type = innodb;
alter table cataloginventory_stock_item comment 'Inventory Stock Item Data';
alter table cataloginventory_stock_item
add unique idx_stock_product (product_id, stock_id);
create table catalogrule
(
rule_id int(10) unsigned not null auto_increment,
name national varchar(255) not null,
description national text not null,
from_date date,
to_date date,
customer_group_ids national varchar(255) not null,
is_active tinyint(1) not null default 0,
conditions_serialized national text not null,
actions_serialized national text not null,
stop_rules_processing tinyint(1) not null default 1,
sort_order int(10) unsigned not null default 0,
simple_action national varchar(32) not null,
discount_amount decimal(12,4) not null,
website_ids national text,
primary key (rule_id)
)
type = innodb;
create index sort_order on catalogrule
(
);
create table catalogrule_product
(
rule_product_id int(10) unsigned not null auto_increment,
rule_id int(10) unsigned not null default 0,
from_time int(10) unsigned not null default 0,
to_time int(10) unsigned not null default 0,
customer_group_id smallint(5) unsigned not null default 0,
product_id int(10) unsigned not null default 0,
action_operator national enum('to_fixed','to_percent','by_fixed','by_percent') not null default to_fixed,
action_amount decimal(12,4) not null default 0.0000,
action_stop tinyint(1) not null default 0,
sort_order int(10) unsigned not null default 0,
website_id smallint(5) unsigned not null,
primary key (rule_product_id)
)
type = innodb;
alter table catalogrule_product
add unique sort_order (from_time, to_time, website_id, customer_group_id, product_id, sort_order);
create table catalogrule_product_price
(
rule_product_price_id int(10) unsigned not null auto_increment,
rule_date date not null default 0000-00-00,
customer_group_id smallint(5) unsigned not null default 0,
product_id int(10) unsigned not null default 0,
rule_price decimal(12,4) not null default 0.0000,
website_id smallint(5) unsigned not null,
latest_start_date date,
earliest_end_date date,
primary key (rule_product_price_id)
)
type = innodb;
alter table catalogrule_product_price
add unique rule_date (rule_date, website_id, customer_group_id, product_id);
create table catalogsearch_query
(
query_id int(10) unsigned not null auto_increment,
query_text national varchar(255) not null,
num_results int(10) unsigned not null default 0,
popularity int(10) unsigned not null default 0,
redirect national varchar(255) not null,
synonim_for national varchar(255) not null,
store_id smallint(5) unsigned not null,
display_in_terms tinyint(1) not null default 1,
updated_at datetime not null,
primary key (query_id)
)
type = innodb;
create index search_query on catalogsearch_query
(
);
create table checkout_agreement
(
agreement_id int(10) unsigned not null auto_increment,
name national varchar(255) not null,
content national text not null,
content_height national varchar(25),
checkbox_text national text not null,
is_active tinyint(4) not null default 0,
primary key (agreement_id)
)
type = innodb type = innodb;
create table checkout_agreement_store
(
agreement_id int(10) unsigned not null,
store_id smallint(5) unsigned not null
)
type = innodb type = innodb;