-
Notifications
You must be signed in to change notification settings - Fork 3
/
db.empty.sql
12417 lines (10866 loc) · 801 KB
/
db.empty.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
-- MariaDB dump 10.19 Distrib 10.6.14-MariaDB, for debian-linux-gnu (x86_64)
--
-- Host: localhost Database: magento
-- ------------------------------------------------------
-- Server version 10.6.14-MariaDB-1:10.6.14+maria~ubu2004
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `admin_adobe_ims_webapi`
--
DROP TABLE IF EXISTS `admin_adobe_ims_webapi`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `admin_adobe_ims_webapi` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
`admin_user_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Admin User Id',
`access_token_hash` varchar(255) DEFAULT NULL COMMENT 'Access Token Hash',
`access_token` text DEFAULT NULL COMMENT 'Access Token',
`created_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Created At',
`updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Updated At',
`last_check_time` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00' COMMENT 'Last check time',
`access_token_expires_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00' COMMENT 'Access Token Expires At',
PRIMARY KEY (`id`),
UNIQUE KEY `ADMIN_ADOBE_IMS_WEBAPI_ACCESS_TOKEN_HASH` (`access_token_hash`),
KEY `ADMIN_ADOBE_IMS_WEBAPI_ADMIN_USER_ID` (`admin_user_id`),
CONSTRAINT `ADMIN_ADOBE_IMS_WEBAPI_ADMIN_USER_ID_ADMIN_USER_USER_ID` FOREIGN KEY (`admin_user_id`) REFERENCES `admin_user` (`user_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci COMMENT='Admin Adobe IMS Webapi';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `admin_adobe_ims_webapi`
--
LOCK TABLES `admin_adobe_ims_webapi` WRITE;
/*!40000 ALTER TABLE `admin_adobe_ims_webapi` DISABLE KEYS */;
/*!40000 ALTER TABLE `admin_adobe_ims_webapi` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `admin_analytics_usage_version_log`
--
DROP TABLE IF EXISTS `admin_analytics_usage_version_log`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `admin_analytics_usage_version_log` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Log ID',
`last_viewed_in_version` varchar(50) NOT NULL COMMENT 'Viewer last viewed on product version',
PRIMARY KEY (`id`),
UNIQUE KEY `ADMIN_ANALYTICS_USAGE_VERSION_LOG_LAST_VIEWED_IN_VERSION` (`last_viewed_in_version`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci COMMENT='Admin Notification Viewer Log Table';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `admin_analytics_usage_version_log`
--
LOCK TABLES `admin_analytics_usage_version_log` WRITE;
/*!40000 ALTER TABLE `admin_analytics_usage_version_log` DISABLE KEYS */;
INSERT INTO `admin_analytics_usage_version_log` VALUES (1,'2.4.6-p1');
/*!40000 ALTER TABLE `admin_analytics_usage_version_log` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `admin_passwords`
--
DROP TABLE IF EXISTS `admin_passwords`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `admin_passwords` (
`password_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Password ID',
`user_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'User ID',
`password_hash` varchar(255) DEFAULT NULL COMMENT 'Password Hash',
`expires` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Deprecated',
`last_updated` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Last Updated',
PRIMARY KEY (`password_id`),
KEY `ADMIN_PASSWORDS_USER_ID` (`user_id`),
CONSTRAINT `ADMIN_PASSWORDS_USER_ID_ADMIN_USER_USER_ID` FOREIGN KEY (`user_id`) REFERENCES `admin_user` (`user_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci COMMENT='Admin Passwords';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `admin_passwords`
--
LOCK TABLES `admin_passwords` WRITE;
/*!40000 ALTER TABLE `admin_passwords` DISABLE KEYS */;
INSERT INTO `admin_passwords` VALUES (1,1,'d0cd7dfc4cc24721fd1ecd1d09fdd43a9276fc531b715ca76f162110479801d2:CwKoZPuXeFAB288vx6YVFU5jmYRJJMxc:3_32_2_67108864',0,1689444664);
/*!40000 ALTER TABLE `admin_passwords` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `admin_system_messages`
--
DROP TABLE IF EXISTS `admin_system_messages`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `admin_system_messages` (
`identity` varchar(100) NOT NULL COMMENT 'Message ID',
`severity` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Problem type',
`created_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Create date',
PRIMARY KEY (`identity`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci COMMENT='Admin System Messages';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `admin_system_messages`
--
LOCK TABLES `admin_system_messages` WRITE;
/*!40000 ALTER TABLE `admin_system_messages` DISABLE KEYS */;
INSERT INTO `admin_system_messages` VALUES ('ad2b0f90cb790c4fca40e7841c88e582',1,'2023-07-16 08:53:54');
/*!40000 ALTER TABLE `admin_system_messages` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `admin_user`
--
DROP TABLE IF EXISTS `admin_user`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `admin_user` (
`user_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'User ID',
`firstname` varchar(32) DEFAULT NULL COMMENT 'User First Name',
`lastname` varchar(32) DEFAULT NULL COMMENT 'User Last Name',
`email` varchar(128) DEFAULT NULL COMMENT 'User Email',
`username` varchar(40) DEFAULT NULL COMMENT 'User Login',
`password` varchar(255) NOT NULL COMMENT 'User Password',
`created` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'User Created Time',
`modified` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'User Modified Time',
`logdate` timestamp NULL DEFAULT NULL COMMENT 'User Last Login Time',
`lognum` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'User Login Number',
`reload_acl_flag` smallint(6) NOT NULL DEFAULT 0 COMMENT 'Reload ACL',
`is_active` smallint(6) NOT NULL DEFAULT 1 COMMENT 'User Is Active',
`extra` text DEFAULT NULL COMMENT 'User Extra Data',
`rp_token` text DEFAULT NULL COMMENT 'Reset Password Link Token',
`rp_token_created_at` timestamp NULL DEFAULT NULL COMMENT 'Reset Password Link Token Creation Date',
`interface_locale` varchar(16) NOT NULL DEFAULT 'en_US' COMMENT 'Backend interface locale',
`failures_num` smallint(6) DEFAULT 0 COMMENT 'Failure Number',
`first_failure` timestamp NULL DEFAULT NULL COMMENT 'First Failure',
`lock_expires` timestamp NULL DEFAULT NULL COMMENT 'Expiration Lock Dates',
PRIMARY KEY (`user_id`),
UNIQUE KEY `ADMIN_USER_USERNAME` (`username`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci COMMENT='Admin User Table';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `admin_user`
--
LOCK TABLES `admin_user` WRITE;
/*!40000 ALTER TABLE `admin_user` DISABLE KEYS */;
INSERT INTO `admin_user` VALUES (1,'Ivan','Chepurnyi','[email protected]','ivan','d0cd7dfc4cc24721fd1ecd1d09fdd43a9276fc531b715ca76f162110479801d2:CwKoZPuXeFAB288vx6YVFU5jmYRJJMxc:3_32_2_67108864','2023-07-15 18:11:04','2023-07-16 08:52:12','2023-07-16 08:52:12',4,0,1,NULL,NULL,NULL,'en_US',0,NULL,NULL);
/*!40000 ALTER TABLE `admin_user` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `admin_user_expiration`
--
DROP TABLE IF EXISTS `admin_user_expiration`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `admin_user_expiration` (
`user_id` int(10) unsigned NOT NULL COMMENT 'User ID',
`expires_at` datetime NOT NULL DEFAULT '0000-00-00 00:00:00' COMMENT 'User Expiration Date',
PRIMARY KEY (`user_id`),
CONSTRAINT `ADMIN_USER_EXPIRATION_USER_ID_ADMIN_USER_USER_ID` FOREIGN KEY (`user_id`) REFERENCES `admin_user` (`user_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci COMMENT='Admin User expiration dates table';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `admin_user_expiration`
--
LOCK TABLES `admin_user_expiration` WRITE;
/*!40000 ALTER TABLE `admin_user_expiration` DISABLE KEYS */;
/*!40000 ALTER TABLE `admin_user_expiration` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `admin_user_session`
--
DROP TABLE IF EXISTS `admin_user_session`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `admin_user_session` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
`session_id` varchar(1) DEFAULT NULL COMMENT 'Deprecated: Session ID value no longer used',
`user_id` int(10) unsigned DEFAULT NULL COMMENT 'Admin User ID',
`status` smallint(5) unsigned NOT NULL DEFAULT 1 COMMENT 'Current Session status',
`created_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Created Time',
`updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Update Time',
`ip` varchar(15) NOT NULL COMMENT 'Remote user IP',
PRIMARY KEY (`id`),
KEY `ADMIN_USER_SESSION_SESSION_ID` (`session_id`),
KEY `ADMIN_USER_SESSION_USER_ID` (`user_id`),
CONSTRAINT `ADMIN_USER_SESSION_USER_ID_ADMIN_USER_USER_ID` FOREIGN KEY (`user_id`) REFERENCES `admin_user` (`user_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci COMMENT='Admin User sessions table';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `admin_user_session`
--
LOCK TABLES `admin_user_session` WRITE;
/*!40000 ALTER TABLE `admin_user_session` DISABLE KEYS */;
INSERT INTO `admin_user_session` VALUES (1,NULL,1,1,'2023-07-15 18:15:08','2023-07-15 18:43:40','172.19.0.13'),(2,NULL,1,1,'2023-07-15 19:02:25','2023-07-15 19:15:44','172.19.0.13'),(3,NULL,1,1,'2023-07-15 19:47:18','2023-07-15 20:05:12','172.19.0.13'),(4,NULL,1,1,'2023-07-16 08:52:12','2023-07-16 08:56:05','172.19.0.13');
/*!40000 ALTER TABLE `admin_user_session` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `adminnotification_inbox`
--
DROP TABLE IF EXISTS `adminnotification_inbox`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `adminnotification_inbox` (
`notification_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Notification ID',
`severity` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Problem type',
`date_added` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Create date',
`title` varchar(255) NOT NULL COMMENT 'Title',
`description` text DEFAULT NULL COMMENT 'Description',
`url` varchar(255) DEFAULT NULL COMMENT 'Url',
`is_read` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Flag if notification read',
`is_remove` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Flag if notification might be removed',
PRIMARY KEY (`notification_id`),
KEY `ADMINNOTIFICATION_INBOX_SEVERITY` (`severity`),
KEY `ADMINNOTIFICATION_INBOX_IS_READ` (`is_read`),
KEY `ADMINNOTIFICATION_INBOX_IS_REMOVE` (`is_remove`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci COMMENT='Adminnotification Inbox';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `adminnotification_inbox`
--
LOCK TABLES `adminnotification_inbox` WRITE;
/*!40000 ALTER TABLE `adminnotification_inbox` DISABLE KEYS */;
INSERT INTO `adminnotification_inbox` VALUES (1,4,'2023-07-15 18:10:06','Disable Notice','To improve performance, collecting statistics for the Magento Report module is disabled by default. \nYou can enable it in System Config.','',0,0);
/*!40000 ALTER TABLE `adminnotification_inbox` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `adobe_stock_asset`
--
DROP TABLE IF EXISTS `adobe_stock_asset`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `adobe_stock_asset` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
`media_gallery_id` int(10) unsigned DEFAULT NULL COMMENT 'Media gallery ID',
`category_id` int(10) unsigned DEFAULT NULL COMMENT 'Category ID',
`creator_id` int(10) unsigned DEFAULT NULL COMMENT 'Creator ID',
`is_licensed` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Is Licensed',
`creation_date` varchar(255) DEFAULT NULL COMMENT 'Creation Date',
PRIMARY KEY (`id`),
KEY `ADOBE_STOCK_ASSET_MEDIA_GALLERY_ID_MEDIA_GALLERY_ASSET_ID` (`media_gallery_id`),
KEY `ADOBE_STOCK_ASSET_ID` (`id`),
KEY `ADOBE_STOCK_ASSET_CATEGORY_ID` (`category_id`),
KEY `ADOBE_STOCK_ASSET_CREATOR_ID` (`creator_id`),
CONSTRAINT `ADOBE_STOCK_ASSET_CATEGORY_ID_ADOBE_STOCK_CATEGORY_ID` FOREIGN KEY (`category_id`) REFERENCES `adobe_stock_category` (`id`) ON DELETE SET NULL,
CONSTRAINT `ADOBE_STOCK_ASSET_CREATOR_ID_ADOBE_STOCK_CREATOR_ID` FOREIGN KEY (`creator_id`) REFERENCES `adobe_stock_creator` (`id`) ON DELETE SET NULL,
CONSTRAINT `ADOBE_STOCK_ASSET_MEDIA_GALLERY_ID_MEDIA_GALLERY_ASSET_ID` FOREIGN KEY (`media_gallery_id`) REFERENCES `media_gallery_asset` (`id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci COMMENT='Adobe Stock Asset';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `adobe_stock_asset`
--
LOCK TABLES `adobe_stock_asset` WRITE;
/*!40000 ALTER TABLE `adobe_stock_asset` DISABLE KEYS */;
/*!40000 ALTER TABLE `adobe_stock_asset` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `adobe_stock_category`
--
DROP TABLE IF EXISTS `adobe_stock_category`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `adobe_stock_category` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
`name` varchar(255) DEFAULT NULL COMMENT 'Name',
PRIMARY KEY (`id`),
KEY `ADOBE_STOCK_CATEGORY_ID` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci COMMENT='Adobe Stock Category';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `adobe_stock_category`
--
LOCK TABLES `adobe_stock_category` WRITE;
/*!40000 ALTER TABLE `adobe_stock_category` DISABLE KEYS */;
/*!40000 ALTER TABLE `adobe_stock_category` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `adobe_stock_creator`
--
DROP TABLE IF EXISTS `adobe_stock_creator`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `adobe_stock_creator` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'ID',
`name` varchar(255) DEFAULT NULL COMMENT 'Asset creator''s name',
PRIMARY KEY (`id`),
KEY `ADOBE_STOCK_CREATOR_ID` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci COMMENT='Adobe Stock Creator';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `adobe_stock_creator`
--
LOCK TABLES `adobe_stock_creator` WRITE;
/*!40000 ALTER TABLE `adobe_stock_creator` DISABLE KEYS */;
/*!40000 ALTER TABLE `adobe_stock_creator` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `adobe_user_profile`
--
DROP TABLE IF EXISTS `adobe_user_profile`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `adobe_user_profile` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
`admin_user_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Admin User Id',
`name` varchar(255) NOT NULL COMMENT 'Display Name',
`email` varchar(255) NOT NULL COMMENT 'user profile email',
`image` varchar(255) NOT NULL COMMENT 'user profile avatar',
`account_type` varchar(255) DEFAULT NULL COMMENT 'Account Type',
`access_token` text DEFAULT NULL COMMENT 'Access Token',
`refresh_token` text DEFAULT NULL COMMENT 'Refresh Token',
`created_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Created At',
`updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Updated At',
`access_token_expires_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00' COMMENT 'Access Token Expires At',
PRIMARY KEY (`id`),
KEY `ADOBE_USER_PROFILE_ADMIN_USER_ID` (`admin_user_id`),
CONSTRAINT `ADOBE_USER_PROFILE_ADMIN_USER_ID_ADMIN_USER_USER_ID` FOREIGN KEY (`admin_user_id`) REFERENCES `admin_user` (`user_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci COMMENT='Adobe IMS User Profile';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `adobe_user_profile`
--
LOCK TABLES `adobe_user_profile` WRITE;
/*!40000 ALTER TABLE `adobe_user_profile` DISABLE KEYS */;
/*!40000 ALTER TABLE `adobe_user_profile` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `authorization_role`
--
DROP TABLE IF EXISTS `authorization_role`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `authorization_role` (
`role_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Role ID',
`parent_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Parent Role ID',
`tree_level` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Role Tree Level',
`sort_order` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Role Sort Order',
`role_type` varchar(1) NOT NULL DEFAULT '0' COMMENT 'Role Type',
`user_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'User ID',
`user_type` varchar(16) DEFAULT NULL COMMENT 'User Type',
`role_name` varchar(50) DEFAULT NULL COMMENT 'Role Name',
PRIMARY KEY (`role_id`),
KEY `AUTHORIZATION_ROLE_PARENT_ID_SORT_ORDER` (`parent_id`,`sort_order`),
KEY `AUTHORIZATION_ROLE_TREE_LEVEL` (`tree_level`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci COMMENT='Admin Role Table';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `authorization_role`
--
LOCK TABLES `authorization_role` WRITE;
/*!40000 ALTER TABLE `authorization_role` DISABLE KEYS */;
INSERT INTO `authorization_role` VALUES (1,0,1,1,'G',0,'2','Administrators'),(2,1,2,0,'U',1,'2','ivan');
/*!40000 ALTER TABLE `authorization_role` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `authorization_rule`
--
DROP TABLE IF EXISTS `authorization_rule`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `authorization_rule` (
`rule_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Rule ID',
`role_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Role ID',
`resource_id` varchar(255) DEFAULT NULL COMMENT 'Resource ID',
`privileges` varchar(20) DEFAULT NULL COMMENT 'Privileges',
`permission` varchar(10) DEFAULT NULL COMMENT 'Permission',
PRIMARY KEY (`rule_id`),
KEY `AUTHORIZATION_RULE_RESOURCE_ID_ROLE_ID` (`resource_id`,`role_id`),
KEY `AUTHORIZATION_RULE_ROLE_ID_RESOURCE_ID` (`role_id`,`resource_id`),
CONSTRAINT `AUTHORIZATION_RULE_ROLE_ID_AUTHORIZATION_ROLE_ROLE_ID` FOREIGN KEY (`role_id`) REFERENCES `authorization_role` (`role_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci COMMENT='Admin Rule Table';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `authorization_rule`
--
LOCK TABLES `authorization_rule` WRITE;
/*!40000 ALTER TABLE `authorization_rule` DISABLE KEYS */;
INSERT INTO `authorization_rule` VALUES (1,1,'Magento_Backend::all',NULL,'allow');
/*!40000 ALTER TABLE `authorization_rule` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `braintree_credit_prices`
--
DROP TABLE IF EXISTS `braintree_credit_prices`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `braintree_credit_prices` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Row ID',
`product_id` int(10) unsigned NOT NULL COMMENT 'Product Id',
`term` int(11) NOT NULL COMMENT 'Credit Term',
`monthly_payment` decimal(12,2) NOT NULL COMMENT 'Monthly Payment',
`instalment_rate` decimal(12,2) NOT NULL COMMENT 'Instalment Rate',
`cost_of_purchase` decimal(12,2) NOT NULL COMMENT 'Cost of purchase',
`total_inc_interest` decimal(12,2) NOT NULL COMMENT 'Total Inc Interest',
PRIMARY KEY (`id`),
UNIQUE KEY `BRAINTREE_CREDIT_PRICES_PRODUCT_ID_TERM` (`product_id`,`term`),
KEY `BRAINTREE_CREDIT_PRICES_PRODUCT_ID` (`product_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci COMMENT='Braintree credit rates';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `braintree_credit_prices`
--
LOCK TABLES `braintree_credit_prices` WRITE;
/*!40000 ALTER TABLE `braintree_credit_prices` DISABLE KEYS */;
/*!40000 ALTER TABLE `braintree_credit_prices` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `braintree_transaction_details`
--
DROP TABLE IF EXISTS `braintree_transaction_details`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `braintree_transaction_details` (
`entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
`order_id` int(10) unsigned NOT NULL COMMENT 'Order Id',
`transaction_source` varchar(12) DEFAULT NULL COMMENT 'Transaction Source',
PRIMARY KEY (`entity_id`),
KEY `BRAINTREE_TRANSACTION_DETAILS_ORDER_ID` (`order_id`),
CONSTRAINT `BRAINTREE_TRANSACTION_DETAILS_ORDER_ID_SALES_ORDER_ENTITY_ID` FOREIGN KEY (`order_id`) REFERENCES `sales_order` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci COMMENT='Braintree transaction details table';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `braintree_transaction_details`
--
LOCK TABLES `braintree_transaction_details` WRITE;
/*!40000 ALTER TABLE `braintree_transaction_details` DISABLE KEYS */;
/*!40000 ALTER TABLE `braintree_transaction_details` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `cache`
--
DROP TABLE IF EXISTS `cache`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cache` (
`id` varchar(200) NOT NULL COMMENT 'Cache Id',
`data` mediumblob DEFAULT NULL COMMENT 'Cache Data',
`create_time` int(11) DEFAULT NULL COMMENT 'Cache Creation Time',
`update_time` int(11) DEFAULT NULL COMMENT 'Time of Cache Updating',
`expire_time` int(11) DEFAULT NULL COMMENT 'Cache Expiration Time',
PRIMARY KEY (`id`),
KEY `CACHE_EXPIRE_TIME` (`expire_time`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci COMMENT='Caches';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `cache`
--
LOCK TABLES `cache` WRITE;
/*!40000 ALTER TABLE `cache` DISABLE KEYS */;
/*!40000 ALTER TABLE `cache` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `cache_tag`
--
DROP TABLE IF EXISTS `cache_tag`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `cache_tag` (
`tag` varchar(100) NOT NULL COMMENT 'Tag',
`cache_id` varchar(200) NOT NULL COMMENT 'Cache Id',
PRIMARY KEY (`tag`,`cache_id`),
KEY `CACHE_TAG_CACHE_ID` (`cache_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci COMMENT='Tag Caches';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `cache_tag`
--
LOCK TABLES `cache_tag` WRITE;
/*!40000 ALTER TABLE `cache_tag` DISABLE KEYS */;
/*!40000 ALTER TABLE `cache_tag` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `captcha_log`
--
DROP TABLE IF EXISTS `captcha_log`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `captcha_log` (
`type` varchar(32) NOT NULL COMMENT 'Type',
`value` varchar(255) NOT NULL COMMENT 'Value',
`count` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Count',
`updated_at` timestamp NULL DEFAULT NULL COMMENT 'Update Time',
PRIMARY KEY (`type`,`value`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci COMMENT='Count Login Attempts';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `captcha_log`
--
LOCK TABLES `captcha_log` WRITE;
/*!40000 ALTER TABLE `captcha_log` DISABLE KEYS */;
/*!40000 ALTER TABLE `captcha_log` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `catalog_category_entity`
--
DROP TABLE IF EXISTS `catalog_category_entity`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_category_entity` (
`entity_id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
`attribute_set_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Attribute Set ID',
`parent_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Parent Category ID',
`created_at` timestamp NOT NULL DEFAULT current_timestamp() COMMENT 'Creation Time',
`updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp() COMMENT 'Update Time',
`path` varchar(255) NOT NULL COMMENT 'Tree Path',
`position` int(11) NOT NULL COMMENT 'Position',
`level` int(11) NOT NULL DEFAULT 0 COMMENT 'Tree Level',
`children_count` int(11) NOT NULL COMMENT 'Child Count',
PRIMARY KEY (`entity_id`),
KEY `CATALOG_CATEGORY_ENTITY_LEVEL` (`level`),
KEY `CATALOG_CATEGORY_ENTITY_PATH` (`path`)
) ENGINE=InnoDB AUTO_INCREMENT=39 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci COMMENT='Catalog Category Table';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `catalog_category_entity`
--
LOCK TABLES `catalog_category_entity` WRITE;
/*!40000 ALTER TABLE `catalog_category_entity` DISABLE KEYS */;
INSERT INTO `catalog_category_entity` VALUES (1,3,0,'2023-07-15 18:10:05','2023-07-15 18:10:05','1',0,0,1),(2,3,1,'2023-07-15 18:10:05','2023-07-15 18:10:05','1/2',1,1,0),(3,3,2,'2023-07-15 19:02:14','2023-07-15 19:52:25','1/2/3',10,2,0),(4,3,2,'2023-07-15 19:02:14','2023-07-15 19:53:11','1/2/4',20,2,0),(5,3,2,'2023-07-15 19:02:14','2023-07-15 19:53:39','1/2/5',30,2,0),(6,3,2,'2023-07-15 19:02:14','2023-07-15 19:54:02','1/2/6',40,2,0),(7,3,3,'2023-07-15 19:02:14','2023-07-15 19:03:41','1/2/3/7',10,3,0),(8,3,3,'2023-07-15 19:02:14','2023-07-15 19:03:53','1/2/3/8',20,3,0),(9,3,3,'2023-07-15 19:02:14','2023-07-15 19:03:58','1/2/3/9',30,3,0),(10,3,3,'2023-07-15 19:02:14','2023-07-15 19:04:03','1/2/3/10',40,3,0),(11,3,3,'2023-07-15 19:02:14','2023-07-15 19:04:08','1/2/3/11',50,3,0),(12,3,3,'2023-07-15 19:02:14','2023-07-15 19:04:15','1/2/3/12',60,3,0),(13,3,3,'2023-07-15 19:02:14','2023-07-15 19:04:20','1/2/3/13',70,3,0),(14,3,3,'2023-07-15 19:02:14','2023-07-15 19:04:26','1/2/3/14',80,3,0),(15,3,4,'2023-07-15 19:02:14','2023-07-15 19:06:14','1/2/4/15',10,3,0),(16,3,4,'2023-07-15 19:02:14','2023-07-15 19:06:06','1/2/4/16',20,3,0),(17,3,4,'2023-07-15 19:02:14','2023-07-15 19:06:21','1/2/4/17',30,3,0),(18,3,4,'2023-07-15 19:02:14','2023-07-15 19:06:26','1/2/4/18',40,3,0),(19,3,4,'2023-07-15 19:02:14','2023-07-15 19:06:30','1/2/4/19',50,3,0),(20,3,4,'2023-07-15 19:02:14','2023-07-15 19:06:38','1/2/4/20',60,3,0),(21,3,4,'2023-07-15 19:02:14','2023-07-15 19:06:42','1/2/4/21',70,3,0),(22,3,4,'2023-07-15 19:02:14','2023-07-15 19:06:48','1/2/4/22',80,3,0),(23,3,5,'2023-07-15 19:02:14','2023-07-15 19:06:58','1/2/5/23',10,3,0),(24,3,5,'2023-07-15 19:02:14','2023-07-15 19:07:09','1/2/5/24',20,3,0),(25,3,5,'2023-07-15 19:02:14','2023-07-15 19:07:22','1/2/5/25',30,3,0),(26,3,5,'2023-07-15 19:02:14','2023-07-15 19:07:29','1/2/5/26',40,3,0),(27,3,5,'2023-07-15 19:02:14','2023-07-15 19:07:37','1/2/5/27',50,3,0),(28,3,5,'2023-07-15 19:02:14','2023-07-15 19:07:44','1/2/5/28',60,3,0),(29,3,5,'2023-07-15 19:02:14','2023-07-15 19:07:51','1/2/5/29',70,3,0),(30,3,5,'2023-07-15 19:02:14','2023-07-15 19:07:58','1/2/5/30',80,3,0),(31,3,6,'2023-07-15 19:02:14','2023-07-15 19:15:19','1/2/6/31',10,3,0),(32,3,6,'2023-07-15 19:02:14','2023-07-15 19:15:24','1/2/6/32',20,3,0),(33,3,6,'2023-07-15 19:02:14','2023-07-15 19:15:29','1/2/6/33',30,3,0),(34,3,6,'2023-07-15 19:02:14','2023-07-15 19:15:34','1/2/6/34',40,3,0),(35,3,6,'2023-07-15 19:02:14','2023-07-15 19:15:41','1/2/6/35',50,3,0),(36,3,6,'2023-07-15 19:02:14','2023-07-15 19:15:47','1/2/6/36',60,3,0),(37,3,6,'2023-07-15 19:02:14','2023-07-15 19:15:51','1/2/6/37',70,3,0),(38,3,6,'2023-07-15 19:02:14','2023-07-15 19:15:56','1/2/6/38',80,3,0);
/*!40000 ALTER TABLE `catalog_category_entity` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `catalog_category_entity_datetime`
--
DROP TABLE IF EXISTS `catalog_category_entity_datetime`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_category_entity_datetime` (
`value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
`attribute_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Attribute ID',
`store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID',
`entity_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity ID',
`value` datetime DEFAULT NULL COMMENT 'Value',
PRIMARY KEY (`value_id`),
UNIQUE KEY `CATALOG_CATEGORY_ENTITY_DATETIME_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
KEY `CATALOG_CATEGORY_ENTITY_DATETIME_ENTITY_ID` (`entity_id`),
KEY `CATALOG_CATEGORY_ENTITY_DATETIME_ATTRIBUTE_ID` (`attribute_id`),
KEY `CATALOG_CATEGORY_ENTITY_DATETIME_STORE_ID` (`store_id`),
CONSTRAINT `CATALOG_CATEGORY_ENTITY_DATETIME_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
CONSTRAINT `CAT_CTGR_ENTT_DTIME_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
CONSTRAINT `CAT_CTGR_ENTT_DTIME_ENTT_ID_CAT_CTGR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=73 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci COMMENT='Catalog Category Datetime Attribute Backend Table';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `catalog_category_entity_datetime`
--
LOCK TABLES `catalog_category_entity_datetime` WRITE;
/*!40000 ALTER TABLE `catalog_category_entity_datetime` DISABLE KEYS */;
INSERT INTO `catalog_category_entity_datetime` VALUES (1,61,0,7,NULL),(2,62,0,7,NULL),(3,61,0,3,NULL),(4,62,0,3,NULL),(5,61,0,8,NULL),(6,62,0,8,NULL),(7,61,0,9,NULL),(8,62,0,9,NULL),(9,61,0,10,NULL),(10,62,0,10,NULL),(11,61,0,11,NULL),(12,62,0,11,NULL),(13,61,0,12,NULL),(14,62,0,12,NULL),(15,61,0,13,NULL),(16,62,0,13,NULL),(17,61,0,14,NULL),(18,62,0,14,NULL),(19,61,0,4,NULL),(20,62,0,4,NULL),(21,61,0,16,NULL),(22,62,0,16,NULL),(23,61,0,15,NULL),(24,62,0,15,NULL),(25,61,0,17,NULL),(26,62,0,17,NULL),(27,61,0,18,NULL),(28,62,0,18,NULL),(29,61,0,19,NULL),(30,62,0,19,NULL),(31,61,0,20,NULL),(32,62,0,20,NULL),(33,61,0,21,NULL),(34,62,0,21,NULL),(35,61,0,22,NULL),(36,62,0,22,NULL),(37,61,0,5,NULL),(38,62,0,5,NULL),(39,61,0,23,NULL),(40,62,0,23,NULL),(41,61,0,24,NULL),(42,62,0,24,NULL),(43,61,0,25,NULL),(44,62,0,25,NULL),(45,61,0,26,NULL),(46,62,0,26,NULL),(47,61,0,27,NULL),(48,62,0,27,NULL),(49,61,0,28,NULL),(50,62,0,28,NULL),(51,61,0,29,NULL),(52,62,0,29,NULL),(53,61,0,30,NULL),(54,62,0,30,NULL),(55,61,0,6,NULL),(56,62,0,6,NULL),(57,61,0,31,NULL),(58,62,0,31,NULL),(59,61,0,32,NULL),(60,62,0,32,NULL),(61,61,0,33,NULL),(62,62,0,33,NULL),(63,61,0,34,NULL),(64,62,0,34,NULL),(65,61,0,35,NULL),(66,62,0,35,NULL),(67,61,0,36,NULL),(68,62,0,36,NULL),(69,61,0,37,NULL),(70,62,0,37,NULL),(71,61,0,38,NULL),(72,62,0,38,NULL);
/*!40000 ALTER TABLE `catalog_category_entity_datetime` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `catalog_category_entity_decimal`
--
DROP TABLE IF EXISTS `catalog_category_entity_decimal`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_category_entity_decimal` (
`value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
`attribute_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Attribute ID',
`store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID',
`entity_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity ID',
`value` decimal(20,6) DEFAULT NULL COMMENT 'Value',
PRIMARY KEY (`value_id`),
UNIQUE KEY `CATALOG_CATEGORY_ENTITY_DECIMAL_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
KEY `CATALOG_CATEGORY_ENTITY_DECIMAL_ENTITY_ID` (`entity_id`),
KEY `CATALOG_CATEGORY_ENTITY_DECIMAL_ATTRIBUTE_ID` (`attribute_id`),
KEY `CATALOG_CATEGORY_ENTITY_DECIMAL_STORE_ID` (`store_id`),
CONSTRAINT `CATALOG_CATEGORY_ENTITY_DECIMAL_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
CONSTRAINT `CAT_CTGR_ENTT_DEC_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
CONSTRAINT `CAT_CTGR_ENTT_DEC_ENTT_ID_CAT_CTGR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci COMMENT='Catalog Category Decimal Attribute Backend Table';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `catalog_category_entity_decimal`
--
LOCK TABLES `catalog_category_entity_decimal` WRITE;
/*!40000 ALTER TABLE `catalog_category_entity_decimal` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_category_entity_decimal` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `catalog_category_entity_int`
--
DROP TABLE IF EXISTS `catalog_category_entity_int`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_category_entity_int` (
`value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
`attribute_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Attribute ID',
`store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID',
`entity_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity ID',
`value` int(11) DEFAULT NULL COMMENT 'Value',
PRIMARY KEY (`value_id`),
UNIQUE KEY `CATALOG_CATEGORY_ENTITY_INT_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
KEY `CATALOG_CATEGORY_ENTITY_INT_ENTITY_ID` (`entity_id`),
KEY `CATALOG_CATEGORY_ENTITY_INT_ATTRIBUTE_ID` (`attribute_id`),
KEY `CATALOG_CATEGORY_ENTITY_INT_STORE_ID` (`store_id`),
CONSTRAINT `CATALOG_CATEGORY_ENTITY_INT_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
CONSTRAINT `CAT_CTGR_ENTT_INT_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
CONSTRAINT `CAT_CTGR_ENTT_INT_ENTT_ID_CAT_CTGR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=220 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci COMMENT='Catalog Category Integer Attribute Backend Table';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `catalog_category_entity_int`
--
LOCK TABLES `catalog_category_entity_int` WRITE;
/*!40000 ALTER TABLE `catalog_category_entity_int` DISABLE KEYS */;
INSERT INTO `catalog_category_entity_int` VALUES (1,69,0,1,1),(2,46,0,2,1),(3,69,0,2,1),(4,46,0,3,1),(5,46,0,4,1),(6,46,0,5,1),(7,46,0,6,1),(8,46,0,7,1),(9,46,0,8,1),(10,46,0,9,1),(11,46,0,10,1),(12,46,0,11,1),(13,46,0,12,1),(14,46,0,13,1),(15,46,0,14,1),(16,46,0,15,1),(17,46,0,16,1),(18,46,0,17,1),(19,46,0,18,1),(20,46,0,19,1),(21,46,0,20,1),(22,46,0,21,1),(23,46,0,22,1),(24,46,0,23,1),(25,46,0,24,1),(26,46,0,25,1),(27,46,0,26,1),(28,46,0,27,1),(29,46,0,28,1),(30,46,0,29,1),(31,46,0,30,1),(32,46,0,31,1),(33,46,0,32,1),(34,46,0,33,1),(35,46,0,34,1),(36,46,0,35,1),(37,46,0,36,1),(38,46,0,37,1),(39,46,0,38,1),(40,54,0,3,1),(41,69,0,3,1),(42,54,0,4,1),(43,69,0,4,1),(44,54,0,5,1),(45,69,0,5,1),(46,54,0,6,1),(47,69,0,6,1),(48,54,0,7,1),(49,69,0,7,1),(50,54,0,8,1),(51,69,0,8,1),(52,54,0,9,1),(53,69,0,9,1),(54,54,0,10,1),(55,69,0,10,1),(56,54,0,11,1),(57,69,0,11,1),(58,54,0,12,1),(59,69,0,12,1),(60,54,0,13,1),(61,69,0,13,1),(62,54,0,14,1),(63,69,0,14,1),(64,54,0,23,1),(65,69,0,23,1),(66,54,0,24,1),(67,69,0,24,1),(68,54,0,25,1),(69,69,0,25,1),(70,54,0,26,1),(71,69,0,26,1),(72,54,0,27,1),(73,69,0,27,1),(74,54,0,28,1),(75,69,0,28,1),(76,54,0,29,1),(77,69,0,29,1),(78,54,0,30,1),(79,69,0,30,1),(80,54,0,15,1),(81,69,0,15,1),(82,54,0,16,1),(83,69,0,16,1),(84,54,0,17,1),(85,69,0,17,1),(86,54,0,18,1),(87,69,0,18,1),(88,54,0,19,1),(89,69,0,19,1),(90,54,0,20,1),(91,69,0,20,1),(92,54,0,21,1),(93,69,0,21,1),(94,54,0,22,1),(95,69,0,22,1),(96,54,0,31,1),(97,69,0,31,1),(98,54,0,32,1),(99,69,0,32,1),(100,54,0,33,1),(101,69,0,33,1),(102,54,0,34,1),(103,69,0,34,1),(104,54,0,35,1),(105,69,0,35,1),(106,54,0,36,1),(107,69,0,36,1),(108,54,0,37,1),(109,69,0,37,1),(110,54,0,38,1),(111,69,0,38,1),(112,53,0,7,NULL),(113,70,0,7,0),(114,71,0,7,0),(115,53,0,3,NULL),(116,70,0,3,0),(117,71,0,3,0),(118,53,0,8,NULL),(119,70,0,8,0),(120,71,0,8,0),(121,53,0,9,NULL),(122,70,0,9,0),(123,71,0,9,0),(124,53,0,10,NULL),(125,70,0,10,0),(126,71,0,10,0),(127,53,0,11,NULL),(128,70,0,11,0),(129,71,0,11,0),(130,53,0,12,NULL),(131,70,0,12,0),(132,71,0,12,0),(133,53,0,13,NULL),(134,70,0,13,0),(135,71,0,13,0),(136,53,0,14,NULL),(137,70,0,14,0),(138,71,0,14,0),(139,53,0,4,NULL),(140,70,0,4,0),(141,71,0,4,0),(142,53,0,16,NULL),(143,70,0,16,0),(144,71,0,16,0),(145,53,0,15,NULL),(146,70,0,15,0),(147,71,0,15,0),(148,53,0,17,NULL),(149,70,0,17,0),(150,71,0,17,0),(151,53,0,18,NULL),(152,70,0,18,0),(153,71,0,18,0),(154,53,0,19,NULL),(155,70,0,19,0),(156,71,0,19,0),(157,53,0,20,NULL),(158,70,0,20,0),(159,71,0,20,0),(160,53,0,21,NULL),(161,70,0,21,0),(162,71,0,21,0),(163,53,0,22,NULL),(164,70,0,22,0),(165,71,0,22,0),(166,53,0,5,NULL),(167,70,0,5,0),(168,71,0,5,0),(169,53,0,23,NULL),(170,70,0,23,0),(171,71,0,23,0),(172,53,0,24,NULL),(173,70,0,24,0),(174,71,0,24,0),(175,53,0,25,NULL),(176,70,0,25,0),(177,71,0,25,0),(178,53,0,26,NULL),(179,70,0,26,0),(180,71,0,26,0),(181,53,0,27,NULL),(182,70,0,27,0),(183,71,0,27,0),(184,53,0,28,NULL),(185,70,0,28,0),(186,71,0,28,0),(187,53,0,29,NULL),(188,70,0,29,0),(189,71,0,29,0),(190,53,0,30,NULL),(191,70,0,30,0),(192,71,0,30,0),(193,53,0,6,NULL),(194,70,0,6,0),(195,71,0,6,0),(196,53,0,31,NULL),(197,70,0,31,0),(198,71,0,31,0),(199,53,0,32,NULL),(200,70,0,32,0),(201,71,0,32,0),(202,53,0,33,NULL),(203,70,0,33,0),(204,71,0,33,0),(205,53,0,34,NULL),(206,70,0,34,0),(207,71,0,34,0),(208,53,0,35,NULL),(209,70,0,35,0),(210,71,0,35,0),(211,53,0,36,NULL),(212,70,0,36,0),(213,71,0,36,0),(214,53,0,37,NULL),(215,70,0,37,0),(216,71,0,37,0),(217,53,0,38,NULL),(218,70,0,38,0),(219,71,0,38,0);
/*!40000 ALTER TABLE `catalog_category_entity_int` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `catalog_category_entity_text`
--
DROP TABLE IF EXISTS `catalog_category_entity_text`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_category_entity_text` (
`value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
`attribute_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Attribute ID',
`store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID',
`entity_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity ID',
`value` mediumtext DEFAULT NULL COMMENT 'Value',
PRIMARY KEY (`value_id`),
UNIQUE KEY `CATALOG_CATEGORY_ENTITY_TEXT_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
KEY `CATALOG_CATEGORY_ENTITY_TEXT_ENTITY_ID` (`entity_id`),
KEY `CATALOG_CATEGORY_ENTITY_TEXT_ATTRIBUTE_ID` (`attribute_id`),
KEY `CATALOG_CATEGORY_ENTITY_TEXT_STORE_ID` (`store_id`),
CONSTRAINT `CATALOG_CATEGORY_ENTITY_TEXT_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
CONSTRAINT `CAT_CTGR_ENTT_TEXT_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
CONSTRAINT `CAT_CTGR_ENTT_TEXT_ENTT_ID_CAT_CTGR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=109 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci COMMENT='Catalog Category Text Attribute Backend Table';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `catalog_category_entity_text`
--
LOCK TABLES `catalog_category_entity_text` WRITE;
/*!40000 ALTER TABLE `catalog_category_entity_text` DISABLE KEYS */;
INSERT INTO `catalog_category_entity_text` VALUES (1,47,0,7,NULL),(2,50,0,7,NULL),(3,51,0,7,NULL),(4,47,0,3,NULL),(5,50,0,3,NULL),(6,51,0,3,NULL),(7,47,0,8,NULL),(8,50,0,8,NULL),(9,51,0,8,NULL),(10,47,0,9,NULL),(11,50,0,9,NULL),(12,51,0,9,NULL),(13,47,0,10,NULL),(14,50,0,10,NULL),(15,51,0,10,NULL),(16,47,0,11,NULL),(17,50,0,11,NULL),(18,51,0,11,NULL),(19,47,0,12,NULL),(20,50,0,12,NULL),(21,51,0,12,NULL),(22,47,0,13,NULL),(23,50,0,13,NULL),(24,51,0,13,NULL),(25,47,0,14,NULL),(26,50,0,14,NULL),(27,51,0,14,NULL),(28,47,0,4,NULL),(29,50,0,4,NULL),(30,51,0,4,NULL),(31,47,0,16,NULL),(32,50,0,16,NULL),(33,51,0,16,NULL),(34,47,0,15,NULL),(35,50,0,15,NULL),(36,51,0,15,NULL),(37,47,0,17,NULL),(38,50,0,17,NULL),(39,51,0,17,NULL),(40,47,0,18,NULL),(41,50,0,18,NULL),(42,51,0,18,NULL),(43,47,0,19,NULL),(44,50,0,19,NULL),(45,51,0,19,NULL),(46,47,0,20,NULL),(47,50,0,20,NULL),(48,51,0,20,NULL),(49,47,0,21,NULL),(50,50,0,21,NULL),(51,51,0,21,NULL),(52,47,0,22,NULL),(53,50,0,22,NULL),(54,51,0,22,NULL),(55,47,0,5,NULL),(56,50,0,5,NULL),(57,51,0,5,NULL),(58,47,0,23,NULL),(59,50,0,23,NULL),(60,51,0,23,NULL),(61,47,0,24,NULL),(62,50,0,24,NULL),(63,51,0,24,NULL),(64,47,0,25,NULL),(65,50,0,25,NULL),(66,51,0,25,NULL),(67,47,0,26,NULL),(68,50,0,26,NULL),(69,51,0,26,NULL),(70,47,0,27,NULL),(71,50,0,27,NULL),(72,51,0,27,NULL),(73,47,0,28,NULL),(74,50,0,28,NULL),(75,51,0,28,NULL),(76,47,0,29,NULL),(77,50,0,29,NULL),(78,51,0,29,NULL),(79,47,0,30,NULL),(80,50,0,30,NULL),(81,51,0,30,NULL),(82,47,0,6,NULL),(83,50,0,6,NULL),(84,51,0,6,NULL),(85,47,0,31,NULL),(86,50,0,31,NULL),(87,51,0,31,NULL),(88,47,0,32,NULL),(89,50,0,32,NULL),(90,51,0,32,NULL),(91,47,0,33,NULL),(92,50,0,33,NULL),(93,51,0,33,NULL),(94,47,0,34,NULL),(95,50,0,34,NULL),(96,51,0,34,NULL),(97,47,0,35,NULL),(98,50,0,35,NULL),(99,51,0,35,NULL),(100,47,0,36,NULL),(101,50,0,36,NULL),(102,51,0,36,NULL),(103,47,0,37,NULL),(104,50,0,37,NULL),(105,51,0,37,NULL),(106,47,0,38,NULL),(107,50,0,38,NULL),(108,51,0,38,NULL);
/*!40000 ALTER TABLE `catalog_category_entity_text` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `catalog_category_entity_varchar`
--
DROP TABLE IF EXISTS `catalog_category_entity_varchar`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_category_entity_varchar` (
`value_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Value ID',
`attribute_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Attribute ID',
`store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID',
`entity_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Entity ID',
`value` varchar(255) DEFAULT NULL COMMENT 'Value',
PRIMARY KEY (`value_id`),
UNIQUE KEY `CATALOG_CATEGORY_ENTITY_VARCHAR_ENTITY_ID_ATTRIBUTE_ID_STORE_ID` (`entity_id`,`attribute_id`,`store_id`),
KEY `CATALOG_CATEGORY_ENTITY_VARCHAR_ENTITY_ID` (`entity_id`),
KEY `CATALOG_CATEGORY_ENTITY_VARCHAR_ATTRIBUTE_ID` (`attribute_id`),
KEY `CATALOG_CATEGORY_ENTITY_VARCHAR_STORE_ID` (`store_id`),
CONSTRAINT `CATALOG_CATEGORY_ENTITY_VARCHAR_STORE_ID_STORE_STORE_ID` FOREIGN KEY (`store_id`) REFERENCES `store` (`store_id`) ON DELETE CASCADE,
CONSTRAINT `CAT_CTGR_ENTT_VCHR_ATTR_ID_EAV_ATTR_ATTR_ID` FOREIGN KEY (`attribute_id`) REFERENCES `eav_attribute` (`attribute_id`) ON DELETE CASCADE,
CONSTRAINT `CAT_CTGR_ENTT_VCHR_ENTT_ID_CAT_CTGR_ENTT_ENTT_ID` FOREIGN KEY (`entity_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=403 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci COMMENT='Catalog Category Varchar Attribute Backend Table';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `catalog_category_entity_varchar`
--
LOCK TABLES `catalog_category_entity_varchar` WRITE;
/*!40000 ALTER TABLE `catalog_category_entity_varchar` DISABLE KEYS */;
INSERT INTO `catalog_category_entity_varchar` VALUES (1,45,0,1,'Root Catalog'),(2,45,0,2,'Default Category'),(3,52,0,2,'PRODUCTS'),(4,45,0,3,'Shirts'),(5,45,0,4,'Summer'),(6,45,0,5,'SALES'),(7,45,0,6,'Outlet'),(8,45,0,7,'Group One'),(9,45,0,8,'Group Two'),(10,45,0,9,'Group Three'),(11,45,0,10,'Group Four'),(12,45,0,11,'Group Five'),(13,45,0,12,'Group Six'),(14,45,0,13,'Group Seven'),(15,45,0,14,'Group Eight'),(16,45,0,15,'Group One'),(17,45,0,16,'Group Two'),(18,45,0,17,'Group Three'),(19,45,0,18,'Group Four'),(20,45,0,19,'Group Five'),(21,45,0,20,'Group Six'),(22,45,0,21,'Group Seven'),(23,45,0,22,'Group Eight'),(24,45,0,23,'Group One'),(25,45,0,24,'Group Two'),(26,45,0,25,'Group Three'),(27,45,0,26,'Group Four'),(28,45,0,27,'Group Five'),(29,45,0,28,'Group Six'),(30,45,0,29,'Group Seven'),(31,45,0,30,'Group Eight'),(32,45,0,31,'Group One'),(33,45,0,32,'Group Two'),(34,45,0,33,'Group Three'),(35,45,0,34,'Group Four'),(36,45,0,35,'Group Five'),(37,45,0,36,'Group Six'),(38,45,0,37,'Group Seven'),(39,45,0,38,'Group Eight'),(40,119,0,3,'shirts'),(41,119,0,4,'summer'),(42,119,0,5,'sale'),(43,119,0,6,'outlet'),(44,119,0,7,'group-one'),(45,119,0,8,'group-two'),(46,119,0,9,'group-three'),(47,119,0,10,'group-four'),(48,119,0,11,'group-five'),(49,119,0,12,'group-six'),(50,119,0,13,'group-seven'),(51,119,0,14,'group-eight'),(52,119,0,23,'group-one'),(53,119,0,24,'group-two'),(54,119,0,25,'group-three'),(55,119,0,26,'group-four'),(56,119,0,27,'group-five'),(57,119,0,28,'group-six'),(58,119,0,29,'group-seven'),(59,119,0,30,'group-eight'),(60,119,0,15,'group-one'),(61,119,0,16,'group-two'),(62,119,0,17,'group-three'),(63,119,0,18,'group-four'),(64,119,0,19,'group-five'),(65,119,0,20,'group-six'),(66,119,0,21,'group-seven'),(67,119,0,22,'group-eight'),(68,119,0,31,'group-one'),(69,119,0,32,'group-two'),(70,119,0,33,'group-three'),(71,119,0,34,'group-four'),(72,119,0,35,'group-five'),(73,119,0,36,'group-six'),(74,119,0,37,'group-seven'),(75,119,0,38,'group-eight'),(112,120,0,7,'shirts/group-one'),(113,48,0,7,NULL),(114,49,0,7,NULL),(115,52,0,7,'PRODUCTS'),(116,60,0,7,NULL),(117,63,0,7,NULL),(118,120,0,3,'shirts'),(120,48,0,3,NULL),(121,49,0,3,NULL),(122,52,0,3,'PRODUCTS'),(123,60,0,3,NULL),(124,63,0,3,NULL),(125,120,0,8,'shirts/group-two'),(126,48,0,8,NULL),(127,49,0,8,NULL),(128,52,0,8,'PRODUCTS'),(129,60,0,8,NULL),(130,63,0,8,NULL),(131,120,0,9,'shirts/group-three'),(132,48,0,9,NULL),(133,49,0,9,NULL),(134,52,0,9,'PRODUCTS'),(135,60,0,9,NULL),(136,63,0,9,NULL),(137,120,0,10,'shirts/group-four'),(138,48,0,10,NULL),(139,49,0,10,NULL),(140,52,0,10,'PRODUCTS'),(141,60,0,10,NULL),(142,63,0,10,NULL),(143,120,0,11,'shirts/group-five'),(144,48,0,11,NULL),(145,49,0,11,NULL),(146,52,0,11,'PRODUCTS'),(147,60,0,11,NULL),(148,63,0,11,NULL),(149,120,0,12,'shirts/group-six'),(150,48,0,12,NULL),(151,49,0,12,NULL),(152,52,0,12,'PRODUCTS'),(153,60,0,12,NULL),(154,63,0,12,NULL),(155,120,0,13,'shirts/group-seven'),(156,48,0,13,NULL),(157,49,0,13,NULL),(158,52,0,13,'PRODUCTS'),(159,60,0,13,NULL),(160,63,0,13,NULL),(161,120,0,14,'shirts/group-eight'),(162,48,0,14,NULL),(163,49,0,14,NULL),(164,52,0,14,'PRODUCTS'),(165,60,0,14,NULL),(166,63,0,14,NULL),(167,120,0,4,'summer'),(168,48,0,4,NULL),(169,49,0,4,NULL),(170,52,0,4,'PRODUCTS'),(171,60,0,4,NULL),(172,63,0,4,NULL),(174,120,0,16,'summer/group-two'),(175,48,0,16,NULL),(176,49,0,16,NULL),(177,52,0,16,'PRODUCTS'),(178,60,0,16,NULL),(179,63,0,16,NULL),(180,120,0,15,'summer/group-one'),(181,48,0,15,NULL),(182,49,0,15,NULL),(183,52,0,15,'PRODUCTS'),(184,60,0,15,NULL),(185,63,0,15,NULL),(186,120,0,17,'summer/group-three'),(187,48,0,17,NULL),(188,49,0,17,NULL),(189,52,0,17,'PRODUCTS'),(190,60,0,17,NULL),(191,63,0,17,NULL),(192,120,0,18,'summer/group-four'),(193,48,0,18,NULL),(194,49,0,18,NULL),(195,52,0,18,'PRODUCTS'),(196,60,0,18,NULL),(197,63,0,18,NULL),(198,120,0,19,'summer/group-five'),(199,48,0,19,NULL),(200,49,0,19,NULL),(201,52,0,19,'PRODUCTS'),(202,60,0,19,NULL),(203,63,0,19,NULL),(204,120,0,20,'summer/group-six'),(205,48,0,20,NULL),(206,49,0,20,NULL),(207,52,0,20,'PRODUCTS'),(208,60,0,20,NULL),(209,63,0,20,NULL),(210,120,0,21,'summer/group-seven'),(211,48,0,21,NULL),(212,49,0,21,NULL),(213,52,0,21,'PRODUCTS'),(214,60,0,21,NULL),(215,63,0,21,NULL),(216,120,0,22,'summer/group-eight'),(217,48,0,22,NULL),(218,49,0,22,NULL),(219,52,0,22,'PRODUCTS'),(220,60,0,22,NULL),(221,63,0,22,NULL),(222,120,0,5,'sale'),(223,48,0,5,NULL),(224,49,0,5,NULL),(225,52,0,5,'PRODUCTS'),(226,60,0,5,NULL),(227,63,0,5,NULL),(228,120,0,23,'sale/group-one'),(229,48,0,23,NULL),(230,49,0,23,NULL),(231,52,0,23,'PRODUCTS'),(232,60,0,23,NULL),(233,63,0,23,NULL),(234,120,0,24,'sale/group-two'),(235,48,0,24,NULL),(236,49,0,24,NULL),(237,52,0,24,'PRODUCTS'),(238,60,0,24,NULL),(239,63,0,24,NULL),(240,120,0,25,'sale/group-three'),(241,48,0,25,NULL),(242,49,0,25,NULL),(243,52,0,25,'PRODUCTS'),(244,60,0,25,NULL),(245,63,0,25,NULL),(246,120,0,26,'sale/group-four'),(247,48,0,26,NULL),(248,49,0,26,NULL),(249,52,0,26,'PRODUCTS'),(250,60,0,26,NULL),(251,63,0,26,NULL),(252,120,0,27,'sale/group-five'),(253,48,0,27,NULL),(254,49,0,27,NULL),(255,52,0,27,'PRODUCTS'),(256,60,0,27,NULL),(257,63,0,27,NULL),(258,120,0,28,'sale/group-six'),(259,48,0,28,NULL),(260,49,0,28,NULL),(261,52,0,28,'PRODUCTS'),(262,60,0,28,NULL),(263,63,0,28,NULL),(264,120,0,29,'sale/group-seven'),(265,48,0,29,NULL),(266,49,0,29,NULL),(267,52,0,29,'PRODUCTS'),(268,60,0,29,NULL),(269,63,0,29,NULL),(270,120,0,30,'sale/group-eight'),(271,48,0,30,NULL),(272,49,0,30,NULL),(273,52,0,30,'PRODUCTS'),(274,60,0,30,NULL),(275,63,0,30,NULL),(276,120,0,6,'outlet'),(277,48,0,6,NULL),(278,49,0,6,NULL),(279,52,0,6,'PRODUCTS'),(280,60,0,6,NULL),(281,63,0,6,NULL),(283,120,0,31,'outlet/group-one'),(284,48,0,31,NULL),(285,49,0,31,NULL),(286,52,0,31,'PRODUCTS'),(287,60,0,31,NULL),(288,63,0,31,NULL),(289,120,0,32,'outlet/group-two'),(290,48,0,32,NULL),(291,49,0,32,NULL),(292,52,0,32,'PRODUCTS'),(293,60,0,32,NULL),(294,63,0,32,NULL),(295,120,0,33,'outlet/group-three'),(296,48,0,33,NULL),(297,49,0,33,NULL),(298,52,0,33,'PRODUCTS'),(299,60,0,33,NULL),(300,63,0,33,NULL),(301,120,0,34,'outlet/group-four'),(302,48,0,34,NULL),(303,49,0,34,NULL),(304,52,0,34,'PRODUCTS'),(305,60,0,34,NULL),(306,63,0,34,NULL),(307,120,0,35,'outlet/group-five'),(308,48,0,35,NULL),(309,49,0,35,NULL),(310,52,0,35,'PRODUCTS'),(311,60,0,35,NULL),(312,63,0,35,NULL),(313,120,0,36,'outlet/group-six'),(314,48,0,36,NULL),(315,49,0,36,NULL),(316,52,0,36,'PRODUCTS'),(317,60,0,36,NULL),(318,63,0,36,NULL),(319,120,0,37,'outlet/group-seven'),(320,48,0,37,NULL),(321,49,0,37,NULL),(322,52,0,37,'PRODUCTS'),(323,60,0,37,NULL),(324,63,0,37,NULL),(325,120,0,38,'outlet/group-eight'),(326,48,0,38,NULL),(327,49,0,38,NULL),(328,52,0,38,'PRODUCTS'),(329,60,0,38,NULL),(330,63,0,38,NULL);
/*!40000 ALTER TABLE `catalog_category_entity_varchar` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `catalog_category_migration_m1_category_map`
--
DROP TABLE IF EXISTS `catalog_category_migration_m1_category_map`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_category_migration_m1_category_map` (
`entity_id` int(11) NOT NULL,
`foreign_id` varchar(255) NOT NULL,
PRIMARY KEY (`entity_id`),
KEY `foreign_id` (`foreign_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `catalog_category_migration_m1_category_map`
--
LOCK TABLES `catalog_category_migration_m1_category_map` WRITE;
/*!40000 ALTER TABLE `catalog_category_migration_m1_category_map` DISABLE KEYS */;
INSERT INTO `catalog_category_migration_m1_category_map` VALUES (6,'outlet'),(38,'outlet-group-eight'),(35,'outlet-group-five'),(34,'outlet-group-four'),(31,'outlet-group-one'),(37,'outlet-group-seven'),(36,'outlet-group-six'),(33,'outlet-group-three'),(32,'outlet-group-two'),(5,'sales'),(30,'sales-group-eight'),(27,'sales-group-five'),(26,'sales-group-four'),(23,'sales-group-one'),(29,'sales-group-seven'),(28,'sales-group-six'),(25,'sales-group-three'),(24,'sales-group-two'),(14,'shirt-group-eight'),(11,'shirt-group-five'),(10,'shirt-group-four'),(7,'shirt-group-one'),(13,'shirt-group-seven'),(12,'shirt-group-six'),(9,'shirt-group-three'),(8,'shirt-group-two'),(3,'shirts'),(4,'summer'),(22,'summer-group-eight'),(19,'summer-group-five'),(18,'summer-group-four'),(15,'summer-group-one'),(21,'summer-group-seven'),(20,'summer-group-six'),(17,'summer-group-three'),(16,'summer-group-two');
/*!40000 ALTER TABLE `catalog_category_migration_m1_category_map` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `catalog_category_product`
--
DROP TABLE IF EXISTS `catalog_category_product`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_category_product` (
`entity_id` int(11) NOT NULL AUTO_INCREMENT COMMENT 'Entity ID',
`category_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Category ID',
`product_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Product ID',
`position` int(11) NOT NULL DEFAULT 0 COMMENT 'Position',
PRIMARY KEY (`entity_id`,`category_id`,`product_id`),
UNIQUE KEY `CATALOG_CATEGORY_PRODUCT_CATEGORY_ID_PRODUCT_ID` (`category_id`,`product_id`),
KEY `CATALOG_CATEGORY_PRODUCT_PRODUCT_ID` (`product_id`),
CONSTRAINT `CAT_CTGR_PRD_CTGR_ID_CAT_CTGR_ENTT_ENTT_ID` FOREIGN KEY (`category_id`) REFERENCES `catalog_category_entity` (`entity_id`) ON DELETE CASCADE,
CONSTRAINT `CAT_CTGR_PRD_PRD_ID_CAT_PRD_ENTT_ENTT_ID` FOREIGN KEY (`product_id`) REFERENCES `catalog_product_entity` (`entity_id`) ON DELETE CASCADE
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci COMMENT='Catalog Product To Category Linkage Table';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `catalog_category_product`
--
LOCK TABLES `catalog_category_product` WRITE;
/*!40000 ALTER TABLE `catalog_category_product` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_category_product` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `catalog_category_product_index`
--
DROP TABLE IF EXISTS `catalog_category_product_index`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_category_product_index` (
`category_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Category ID',
`product_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Product ID',
`position` int(11) DEFAULT NULL COMMENT 'Position',
`is_parent` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Is Parent',
`store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID',
`visibility` smallint(5) unsigned NOT NULL COMMENT 'Visibility',
PRIMARY KEY (`category_id`,`product_id`,`store_id`),
KEY `CAT_CTGR_PRD_IDX_PRD_ID_STORE_ID_CTGR_ID_VISIBILITY` (`product_id`,`store_id`,`category_id`,`visibility`),
KEY `CAT_CTGR_PRD_IDX_STORE_ID_CTGR_ID_VISIBILITY_IS_PARENT_POSITION` (`store_id`,`category_id`,`visibility`,`is_parent`,`position`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci COMMENT='Catalog Category Product Index';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `catalog_category_product_index`
--
LOCK TABLES `catalog_category_product_index` WRITE;
/*!40000 ALTER TABLE `catalog_category_product_index` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_category_product_index` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `catalog_category_product_index_replica`
--
DROP TABLE IF EXISTS `catalog_category_product_index_replica`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_category_product_index_replica` (
`category_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Category ID',
`product_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Product ID',
`position` int(11) DEFAULT NULL COMMENT 'Position',
`is_parent` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Is Parent',
`store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store ID',
`visibility` smallint(5) unsigned NOT NULL COMMENT 'Visibility',
PRIMARY KEY (`category_id`,`product_id`,`store_id`),
KEY `CAT_CTGR_PRD_IDX_PRD_ID_STORE_ID_CTGR_ID_VISIBILITY` (`product_id`,`store_id`,`category_id`,`visibility`),
KEY `CAT_CTGR_PRD_IDX_STORE_ID_CTGR_ID_VISIBILITY_IS_PARENT_POSITION` (`store_id`,`category_id`,`visibility`,`is_parent`,`position`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci COMMENT='Catalog Category Product Index';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `catalog_category_product_index_replica`
--
LOCK TABLES `catalog_category_product_index_replica` WRITE;
/*!40000 ALTER TABLE `catalog_category_product_index_replica` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_category_product_index_replica` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `catalog_category_product_index_store1`
--
DROP TABLE IF EXISTS `catalog_category_product_index_store1`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_category_product_index_store1` (
`category_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Category Id',
`product_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Product Id',
`position` int(11) DEFAULT NULL COMMENT 'Position',
`is_parent` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Is Parent',
`store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store Id',
`visibility` smallint(5) unsigned NOT NULL COMMENT 'Visibility',
PRIMARY KEY (`category_id`,`product_id`,`store_id`),
KEY `IDX_4B965DC45C352D6E4C9DC0FF50B1FCF5` (`product_id`,`store_id`,`category_id`,`visibility`),
KEY `IDX_47AB760CD6A893ACEA69A9C2E0112C60` (`store_id`,`category_id`,`visibility`,`is_parent`,`position`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci COMMENT='Catalog Category Product Index Store1';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `catalog_category_product_index_store1`
--
LOCK TABLES `catalog_category_product_index_store1` WRITE;
/*!40000 ALTER TABLE `catalog_category_product_index_store1` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_category_product_index_store1` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `catalog_category_product_index_store1_replica`
--
DROP TABLE IF EXISTS `catalog_category_product_index_store1_replica`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_category_product_index_store1_replica` (
`category_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Category Id',
`product_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Product Id',
`position` int(11) DEFAULT NULL COMMENT 'Position',
`is_parent` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Is Parent',
`store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store Id',
`visibility` smallint(5) unsigned NOT NULL COMMENT 'Visibility',
PRIMARY KEY (`category_id`,`product_id`,`store_id`),
KEY `CAT_CTGR_PRD_IDX_STORE1_PRD_ID_STORE_ID_CTGR_ID_VISIBILITY` (`product_id`,`store_id`,`category_id`,`visibility`),
KEY `IDX_216E521C8AD125E066D2B0BAB4A08412` (`store_id`,`category_id`,`visibility`,`is_parent`,`position`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci COMMENT='Catalog Category Product Index Store1 Replica';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `catalog_category_product_index_store1_replica`
--
LOCK TABLES `catalog_category_product_index_store1_replica` WRITE;
/*!40000 ALTER TABLE `catalog_category_product_index_store1_replica` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_category_product_index_store1_replica` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `catalog_category_product_index_store2`
--
DROP TABLE IF EXISTS `catalog_category_product_index_store2`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_category_product_index_store2` (
`category_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Category Id',
`product_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Product Id',
`position` int(11) DEFAULT NULL COMMENT 'Position',
`is_parent` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Is Parent',
`store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store Id',
`visibility` smallint(5) unsigned NOT NULL COMMENT 'Visibility',
PRIMARY KEY (`category_id`,`product_id`,`store_id`),
KEY `IDX_87FCED52F67C72BB6992C79EB4DCFA8A` (`product_id`,`store_id`,`category_id`,`visibility`),
KEY `IDX_15B841C92B67D986A980051DF109F9D1` (`store_id`,`category_id`,`visibility`,`is_parent`,`position`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci COMMENT='Catalog Category Product Index Store2';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `catalog_category_product_index_store2`
--
LOCK TABLES `catalog_category_product_index_store2` WRITE;
/*!40000 ALTER TABLE `catalog_category_product_index_store2` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_category_product_index_store2` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `catalog_category_product_index_store2_replica`
--
DROP TABLE IF EXISTS `catalog_category_product_index_store2_replica`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `catalog_category_product_index_store2_replica` (
`category_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Category Id',
`product_id` int(10) unsigned NOT NULL DEFAULT 0 COMMENT 'Product Id',
`position` int(11) DEFAULT NULL COMMENT 'Position',
`is_parent` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Is Parent',
`store_id` smallint(5) unsigned NOT NULL DEFAULT 0 COMMENT 'Store Id',
`visibility` smallint(5) unsigned NOT NULL COMMENT 'Visibility',
PRIMARY KEY (`category_id`,`product_id`,`store_id`),
KEY `CAT_CTGR_PRD_IDX_STORE2_PRD_ID_STORE_ID_CTGR_ID_VISIBILITY` (`product_id`,`store_id`,`category_id`,`visibility`),
KEY `IDX_2AB6FE58F086547FA7E4590837296849` (`store_id`,`category_id`,`visibility`,`is_parent`,`position`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci COMMENT='Catalog Category Product Index Store2 Replica';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `catalog_category_product_index_store2_replica`
--
LOCK TABLES `catalog_category_product_index_store2_replica` WRITE;
/*!40000 ALTER TABLE `catalog_category_product_index_store2_replica` DISABLE KEYS */;
/*!40000 ALTER TABLE `catalog_category_product_index_store2_replica` ENABLE KEYS */;
UNLOCK TABLES;
--