-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdatabase.sql
More file actions
4905 lines (4246 loc) · 888 KB
/
database.sql
File metadata and controls
4905 lines (4246 loc) · 888 KB
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
-- MySQL dump 10.13 Distrib 8.4.4, for macos15 (arm64)
--
-- Host: 127.0.0.1 Database: shofy
-- ------------------------------------------------------
-- Server version 8.4.4
/*!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 */;
/*!50503 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 `activations`
--
DROP TABLE IF EXISTS `activations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `activations` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`user_id` bigint unsigned NOT NULL,
`code` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
`completed` tinyint(1) NOT NULL DEFAULT '0',
`completed_at` timestamp NULL DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `activations_user_id_index` (`user_id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `activations`
--
LOCK TABLES `activations` WRITE;
/*!40000 ALTER TABLE `activations` DISABLE KEYS */;
INSERT INTO `activations` VALUES (1,1,'uwsjC7XhQMS1rqryaDSW3SezaLq7THj4',1,'2025-03-31 21:06:37','2025-03-31 21:06:37','2025-03-31 21:06:37');
/*!40000 ALTER TABLE `activations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `admin_notifications`
--
DROP TABLE IF EXISTS `admin_notifications`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `admin_notifications` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`action_label` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`action_url` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`read_at` timestamp NULL DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`permission` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `admin_notifications`
--
LOCK TABLES `admin_notifications` WRITE;
/*!40000 ALTER TABLE `admin_notifications` DISABLE KEYS */;
/*!40000 ALTER TABLE `admin_notifications` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ads`
--
DROP TABLE IF EXISTS `ads`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ads` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`expired_at` datetime DEFAULT NULL,
`location` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`key` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
`image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`url` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`clicked` bigint NOT NULL DEFAULT '0',
`order` int DEFAULT '0',
`status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`open_in_new_tab` tinyint(1) NOT NULL DEFAULT '1',
`tablet_image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`mobile_image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`ads_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`google_adsense_slot_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `ads_key_unique` (`key`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ads`
--
LOCK TABLES `ads` WRITE;
/*!40000 ALTER TABLE `ads` DISABLE KEYS */;
INSERT INTO `ads` VALUES (1,'Ads 1','2030-04-01 00:00:00','not_set','UROL9F9ZZVAA','main/banners/1.jpg','/products',0,1,'published','2025-03-31 21:06:54','2025-03-31 21:06:54',1,NULL,NULL,'custom_ad',NULL),(2,'Ads 2','2030-04-01 00:00:00','not_set','B30VDBKO7SBF','main/banners/2.jpg','/products',0,2,'published','2025-03-31 21:06:54','2025-03-31 21:06:54',1,NULL,NULL,'custom_ad',NULL),(3,'Ads 3','2030-04-01 00:00:00','not_set','BN3ZCHLIE95I','main/gadgets/gadget-banner-1.jpg','/products',0,3,'published','2025-03-31 21:06:54','2025-03-31 21:06:54',1,NULL,NULL,'custom_ad',NULL),(4,'Ads 4','2030-04-01 00:00:00','not_set','QGPRRJ2MPZYA','main/gadgets/gadget-banner-2.jpg','/products',0,4,'published','2025-03-31 21:06:54','2025-03-31 21:06:54',1,NULL,NULL,'custom_ad',NULL),(5,'Ads 5','2030-04-01 00:00:00','not_set','B5ZA76ZWMWAE','main/banners/slider-1.png','http://shofy.test',0,5,'published','2025-03-31 21:06:54','2025-03-31 21:06:54',1,NULL,NULL,'custom_ad',NULL),(6,'Ads 6','2030-04-01 00:00:00','not_set','F1LTQS976YPY','main/banners/slider-2.png','http://shofy.test',0,6,'published','2025-03-31 21:06:54','2025-03-31 21:06:54',1,NULL,NULL,'custom_ad',NULL),(7,'Ads 7','2030-04-01 00:00:00','not_set','IHPZ2WBSYJUK','main/banners/slider-3.png','http://shofy.test',0,7,'published','2025-03-31 21:06:54','2025-03-31 21:06:54',1,NULL,NULL,'custom_ad',NULL);
/*!40000 ALTER TABLE `ads` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ads_translations`
--
DROP TABLE IF EXISTS `ads_translations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ads_translations` (
`lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`ads_id` bigint unsigned NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`url` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`lang_code`,`ads_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ads_translations`
--
LOCK TABLES `ads_translations` WRITE;
/*!40000 ALTER TABLE `ads_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `ads_translations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `announcements`
--
DROP TABLE IF EXISTS `announcements`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `announcements` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`content` text COLLATE utf8mb4_unicode_ci NOT NULL,
`has_action` tinyint(1) NOT NULL DEFAULT '0',
`action_label` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`action_url` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`action_open_new_tab` tinyint(1) NOT NULL DEFAULT '0',
`dismissible` tinyint(1) NOT NULL DEFAULT '0',
`start_date` datetime DEFAULT NULL,
`end_date` datetime DEFAULT NULL,
`is_active` tinyint(1) NOT NULL DEFAULT '1',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `announcements`
--
LOCK TABLES `announcements` WRITE;
/*!40000 ALTER TABLE `announcements` DISABLE KEYS */;
INSERT INTO `announcements` VALUES (1,'Announcement 1','Enjoy free shipping on all orders over $99! Shop now and save on delivery costs.',0,NULL,NULL,0,1,'2025-04-01 04:06:47',NULL,1,'2025-03-31 21:06:47','2025-03-31 21:06:47'),(2,'Announcement 2','Need assistance? Our customer support is available 24/7 to help you with any questions or concerns.',0,NULL,NULL,0,1,'2025-04-01 04:06:47',NULL,1,'2025-03-31 21:06:47','2025-03-31 21:06:47'),(3,'Announcement 3','Shop with confidence! We offer a hassle-free 30 days return service for your peace of mind.',0,NULL,NULL,0,1,'2025-04-01 04:06:47',NULL,1,'2025-03-31 21:06:47','2025-03-31 21:06:47');
/*!40000 ALTER TABLE `announcements` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `announcements_translations`
--
DROP TABLE IF EXISTS `announcements_translations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `announcements_translations` (
`lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`announcements_id` bigint unsigned NOT NULL,
`content` text COLLATE utf8mb4_unicode_ci,
`action_label` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`lang_code`,`announcements_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `announcements_translations`
--
LOCK TABLES `announcements_translations` WRITE;
/*!40000 ALTER TABLE `announcements_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `announcements_translations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `audit_histories`
--
DROP TABLE IF EXISTS `audit_histories`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `audit_histories` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`user_id` bigint unsigned NOT NULL,
`module` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL,
`request` longtext COLLATE utf8mb4_unicode_ci,
`action` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
`user_agent` text COLLATE utf8mb4_unicode_ci,
`ip_address` varchar(45) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`reference_user` bigint unsigned NOT NULL,
`reference_id` bigint unsigned NOT NULL,
`reference_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `audit_histories_user_id_index` (`user_id`),
KEY `audit_histories_module_index` (`module`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `audit_histories`
--
LOCK TABLES `audit_histories` WRITE;
/*!40000 ALTER TABLE `audit_histories` DISABLE KEYS */;
/*!40000 ALTER TABLE `audit_histories` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `cache`
--
DROP TABLE IF EXISTS `cache`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cache` (
`key` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`value` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
`expiration` int NOT NULL,
PRIMARY KEY (`key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!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_locks`
--
DROP TABLE IF EXISTS `cache_locks`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cache_locks` (
`key` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`owner` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`expiration` int NOT NULL,
PRIMARY KEY (`key`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `cache_locks`
--
LOCK TABLES `cache_locks` WRITE;
/*!40000 ALTER TABLE `cache_locks` DISABLE KEYS */;
/*!40000 ALTER TABLE `cache_locks` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `categories`
--
DROP TABLE IF EXISTS `categories`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `categories` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
`parent_id` bigint unsigned NOT NULL DEFAULT '0',
`description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
`author_id` bigint unsigned DEFAULT NULL,
`author_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Botble\\ACL\\Models\\User',
`icon` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`order` int unsigned NOT NULL DEFAULT '0',
`is_featured` tinyint NOT NULL DEFAULT '0',
`is_default` tinyint unsigned NOT NULL DEFAULT '0',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `categories_parent_id_index` (`parent_id`),
KEY `categories_status_index` (`status`),
KEY `categories_created_at_index` (`created_at`)
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `categories`
--
LOCK TABLES `categories` WRITE;
/*!40000 ALTER TABLE `categories` DISABLE KEYS */;
INSERT INTO `categories` VALUES (1,'Crisp Bread & Cake',0,'Quisquam quo dicta suscipit culpa similique quis exercitationem. Quo accusamus eligendi quam adipisci. Dolor voluptatem saepe numquam et repellat.','published',1,'Botble\\ACL\\Models\\User',NULL,0,0,0,'2025-03-31 21:06:44','2025-03-31 21:06:44'),(2,'Fashion',0,'Molestias quisquam veniam molestiae quis. Ducimus molestias recusandae error minima. Odio officia nostrum itaque porro est. Et velit officia ut culpa possimus non recusandae.','published',1,'Botble\\ACL\\Models\\User',NULL,0,1,0,'2025-03-31 21:06:44','2025-03-31 21:06:44'),(3,'Electronic',0,'Neque atque omnis non minus omnis debitis quod. Fugit ad enim est aspernatur voluptatem qui. Corrupti rerum cumque quia dolor ut id est. Distinctio aut autem est occaecati voluptatum.','published',1,'Botble\\ACL\\Models\\User',NULL,0,1,0,'2025-03-31 21:06:44','2025-03-31 21:06:44'),(4,'Commercial',0,'Sint aut placeat pariatur odio et repudiandae. Impedit harum et odit accusantium. Aut natus et aut natus. Qui ut dolorum cumque optio. Nihil dolores et reiciendis non qui.','published',1,'Botble\\ACL\\Models\\User',NULL,0,1,0,'2025-03-31 21:06:44','2025-03-31 21:06:44'),(5,'Organic Fruits',0,'Ut voluptatum dolore provident ipsum. Officiis vero quae facere laboriosam facere. Dicta laborum et nam autem iste qui tenetur.','published',1,'Botble\\ACL\\Models\\User',NULL,0,1,0,'2025-03-31 21:06:44','2025-03-31 21:06:44'),(6,'Ecological',0,'Dicta blanditiis fugit tempore illum. Accusamus non in est ut quas id. Quam sapiente officiis dolorum quam eaque in. Soluta quisquam tenetur voluptate sit.','published',1,'Botble\\ACL\\Models\\User',NULL,0,1,0,'2025-03-31 21:06:44','2025-03-31 21:06:44');
/*!40000 ALTER TABLE `categories` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `categories_translations`
--
DROP TABLE IF EXISTS `categories_translations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `categories_translations` (
`lang_code` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`categories_id` bigint unsigned NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`description` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`lang_code`,`categories_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `categories_translations`
--
LOCK TABLES `categories_translations` WRITE;
/*!40000 ALTER TABLE `categories_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `categories_translations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `cities`
--
DROP TABLE IF EXISTS `cities`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cities` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
`slug` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`state_id` bigint unsigned DEFAULT NULL,
`country_id` bigint unsigned DEFAULT NULL,
`record_id` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`order` tinyint NOT NULL DEFAULT '0',
`image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`is_default` tinyint unsigned NOT NULL DEFAULT '0',
`status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`zip_code` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `cities_slug_unique` (`slug`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `cities`
--
LOCK TABLES `cities` WRITE;
/*!40000 ALTER TABLE `cities` DISABLE KEYS */;
/*!40000 ALTER TABLE `cities` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `cities_translations`
--
DROP TABLE IF EXISTS `cities_translations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `cities_translations` (
`lang_code` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`cities_id` bigint unsigned NOT NULL,
`name` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`slug` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`lang_code`,`cities_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `cities_translations`
--
LOCK TABLES `cities_translations` WRITE;
/*!40000 ALTER TABLE `cities_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `cities_translations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `contact_custom_field_options`
--
DROP TABLE IF EXISTS `contact_custom_field_options`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `contact_custom_field_options` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`custom_field_id` bigint unsigned NOT NULL,
`label` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`value` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`order` int NOT NULL DEFAULT '999',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `contact_custom_field_options`
--
LOCK TABLES `contact_custom_field_options` WRITE;
/*!40000 ALTER TABLE `contact_custom_field_options` DISABLE KEYS */;
/*!40000 ALTER TABLE `contact_custom_field_options` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `contact_custom_field_options_translations`
--
DROP TABLE IF EXISTS `contact_custom_field_options_translations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `contact_custom_field_options_translations` (
`contact_custom_field_options_id` bigint unsigned NOT NULL,
`lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`label` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`value` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`lang_code`,`contact_custom_field_options_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `contact_custom_field_options_translations`
--
LOCK TABLES `contact_custom_field_options_translations` WRITE;
/*!40000 ALTER TABLE `contact_custom_field_options_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `contact_custom_field_options_translations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `contact_custom_fields`
--
DROP TABLE IF EXISTS `contact_custom_fields`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `contact_custom_fields` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`required` tinyint(1) NOT NULL DEFAULT '0',
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`placeholder` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`order` int NOT NULL DEFAULT '999',
`status` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `contact_custom_fields`
--
LOCK TABLES `contact_custom_fields` WRITE;
/*!40000 ALTER TABLE `contact_custom_fields` DISABLE KEYS */;
/*!40000 ALTER TABLE `contact_custom_fields` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `contact_custom_fields_translations`
--
DROP TABLE IF EXISTS `contact_custom_fields_translations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `contact_custom_fields_translations` (
`contact_custom_fields_id` bigint unsigned NOT NULL,
`lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`placeholder` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`lang_code`,`contact_custom_fields_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `contact_custom_fields_translations`
--
LOCK TABLES `contact_custom_fields_translations` WRITE;
/*!40000 ALTER TABLE `contact_custom_fields_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `contact_custom_fields_translations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `contact_replies`
--
DROP TABLE IF EXISTS `contact_replies`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `contact_replies` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`message` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`contact_id` bigint unsigned NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `contact_replies`
--
LOCK TABLES `contact_replies` WRITE;
/*!40000 ALTER TABLE `contact_replies` DISABLE KEYS */;
/*!40000 ALTER TABLE `contact_replies` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `contacts`
--
DROP TABLE IF EXISTS `contacts`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `contacts` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL,
`email` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`phone` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`address` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`subject` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`content` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`custom_fields` text COLLATE utf8mb4_unicode_ci,
`status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'unread',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `contacts`
--
LOCK TABLES `contacts` WRITE;
/*!40000 ALTER TABLE `contacts` DISABLE KEYS */;
INSERT INTO `contacts` VALUES (1,'Hollie Wyman','prudence50@example.net','1-972-472-5554','9175 Conroy Course Suite 152\nRandyfurt, AL 42141-5932','Accusamus aspernatur ea alias praesentium.','Sit quos commodi tempora enim. Ut est et hic. Esse sint aspernatur exercitationem dolorem quo et non. Tenetur et et aspernatur. Esse earum asperiores ad aut ut laudantium. Et sed iure vel aut praesentium quo hic provident. In voluptatem aut sit quia voluptas veritatis. Illo ut deleniti sint iste. Laborum aperiam voluptatum accusamus officiis nulla. Delectus occaecati doloremque sint consequatur in nostrum. Itaque quae at at. Est in et qui excepturi. Reprehenderit asperiores rerum nesciunt.',NULL,'read','2025-03-31 21:06:42','2025-03-31 21:06:42'),(2,'Darrick Turcotte','treutel.derek@example.net','346-856-4068','11394 Gleason Manor\nHudsonville, NC 16025','Excepturi ut est voluptatem officia omnis.','Reiciendis sit autem veritatis omnis soluta quas. Facere consequatur iure dolorem molestiae architecto. Corrupti suscipit quia perspiciatis perferendis. Ad similique tempora voluptates illo ut. Aliquam fuga quae atque eum eos. Repudiandae voluptates occaecati eum voluptatem. Consequatur fugit eveniet magnam id et. Possimus vitae non dignissimos aut.',NULL,'read','2025-03-31 21:06:42','2025-03-31 21:06:42'),(3,'Emma Dooley','theodore.kirlin@example.com','864.532.6680','411 Becker Tunnel Suite 744\nSouth Juddburgh, PA 39739','Sint voluptas sit incidunt.','Dolore similique perferendis quia et. Consequatur facere harum distinctio illo. Qui perferendis aperiam facilis eos. Et repudiandae temporibus omnis doloremque. Velit illo animi rem non. Repudiandae voluptatem quasi ut dolor quaerat. Nam corrupti et accusamus perferendis dolorem culpa. Provident officiis excepturi et tenetur. Est magnam odio voluptatem expedita sit. Ipsum omnis mollitia tempore qui quia.',NULL,'read','2025-03-31 21:06:42','2025-03-31 21:06:42'),(4,'Daren Cormier','torrance04@example.org','509.585.8812','28087 Pollich Row Suite 220\nMarkland, DE 61941','Eum voluptas numquam provident.','Id aspernatur consequuntur quo tempora qui. Facilis et velit labore esse necessitatibus officiis mollitia. Explicabo aspernatur a accusantium ipsam voluptatem voluptas. Incidunt laboriosam magni voluptatem facere. Qui repudiandae molestiae animi hic aut. Dolore enim ducimus beatae rerum iste. Earum et eius est.',NULL,'read','2025-03-31 21:06:42','2025-03-31 21:06:42'),(5,'Arnaldo Turner DVM','jude46@example.com','(850) 793-4294','344 Jennings Fork\nMarleemouth, MN 99822-2112','Quisquam et totam eveniet.','Natus illum asperiores aut. Molestiae quia ut asperiores itaque quisquam et aut quis. Perspiciatis quo at eaque perferendis. Tempore sequi voluptatem sint tenetur fuga aut aperiam sed. Quia dolor aut molestiae perferendis. Aut dolorum nihil sint dolorem. Eveniet earum eligendi tenetur at iusto libero. Rerum aut aut nihil. Molestias labore minus omnis labore. Maiores nihil sint blanditiis corrupti.',NULL,'unread','2025-03-31 21:06:42','2025-03-31 21:06:42'),(6,'Chad Torphy','langosh.dewitt@example.org','+1-541-625-7628','959 Barrows Valleys\nEast Bruce, CO 21956-2515','Dolorem aut temporibus est.','Odit modi voluptas quam ad aliquid aut ullam. Eaque maiores voluptas suscipit repudiandae possimus soluta quisquam. Eos velit aut et est quidem. Dolorem ut reprehenderit ea quis quis. Et recusandae deleniti earum enim est. Ut dignissimos dolore neque doloremque. Aut rerum exercitationem qui eos sint facilis autem aut. Nisi maxime blanditiis tempore quas laboriosam. Dolor voluptate eos eius consequatur. Necessitatibus cum ut ea.',NULL,'read','2025-03-31 21:06:42','2025-03-31 21:06:42'),(7,'Prof. Adelbert Steuber DVM','umante@example.net','+1-689-540-0176','65061 Moises Island Apt. 503\nPort Lurlinefurt, RI 67309','Unde quos aut enim ea quibusdam sed rerum.','Culpa dolor dignissimos magnam dolorum vel necessitatibus. Sit ut repellat cum eius ipsa et reiciendis et. Ea dolor consequatur alias earum id. Quis cum odit autem voluptate minus magnam aut. Magni eos velit perferendis voluptas ut molestiae. Aut consequatur doloribus voluptatem tenetur qui. Doloribus necessitatibus distinctio et dolorem eveniet nulla dignissimos et. Aut sit dolor nemo est consequatur soluta. Et ullam rem ea beatae.',NULL,'unread','2025-03-31 21:06:42','2025-03-31 21:06:42'),(8,'Marguerite Schiller','bertha.lindgren@example.org','714-788-4610','147 Kayleigh Points\nSouth Larrytown, DC 09783','Autem consectetur dolores ipsa.','Ipsum eum adipisci repellat quidem dolorum. Quisquam harum sit id. Ad tenetur error et. Et officiis et quidem tempora. Non tempore impedit velit esse ea laborum laborum. Aut eos labore reprehenderit nulla. Odio illo quaerat tempore est. Fuga facilis ut amet et ab soluta nostrum. Dolor iusto aliquam quam corporis. Placeat qui molestiae minima repellendus.',NULL,'read','2025-03-31 21:06:42','2025-03-31 21:06:42'),(9,'Prof. Rodger Vandervort','wkuphal@example.com','1-443-307-9171','31512 Amely Parks\nBrandtshire, NH 56750','Facilis quo aut quae dolores.','Laudantium et inventore voluptatem aliquid maxime repudiandae at quam. Quasi adipisci eaque aut consequuntur. Accusamus delectus aperiam officia facere est. Neque et sunt voluptas rem ratione autem aut. Facere cupiditate nam quia. Dignissimos minima commodi deleniti et consequuntur non. Consequuntur asperiores voluptatem sunt quo minima vitae quibusdam. Consectetur id illo architecto error laudantium ea. Architecto et iure sed esse doloremque maiores quasi dolorem.',NULL,'read','2025-03-31 21:06:42','2025-03-31 21:06:42'),(10,'Lillie Rutherford','benjamin.kling@example.org','574.291.9927','5438 Travis Heights\nWest Moriahfort, RI 12242','Non eveniet qui qui et.','Et deserunt ratione fugit doloremque ut molestias. Ducimus voluptatum necessitatibus quos aut et aspernatur magni. Accusamus quia omnis dicta in temporibus. Minus impedit reiciendis accusantium velit enim est. Aut reiciendis quae officia. Libero quos sit ipsa repellat repellendus labore. Velit labore suscipit minima natus ea. Est praesentium vitae quia nemo ut et. In sit ab quam eligendi. Porro unde exercitationem atque error perspiciatis est optio tempore.',NULL,'read','2025-03-31 21:06:42','2025-03-31 21:06:42');
/*!40000 ALTER TABLE `contacts` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `countries`
--
DROP TABLE IF EXISTS `countries`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `countries` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
`nationality` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`order` tinyint NOT NULL DEFAULT '0',
`image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`is_default` tinyint unsigned NOT NULL DEFAULT '0',
`status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`code` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `countries`
--
LOCK TABLES `countries` WRITE;
/*!40000 ALTER TABLE `countries` DISABLE KEYS */;
/*!40000 ALTER TABLE `countries` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `countries_translations`
--
DROP TABLE IF EXISTS `countries_translations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `countries_translations` (
`lang_code` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
`countries_id` bigint unsigned NOT NULL,
`name` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`nationality` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`lang_code`,`countries_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `countries_translations`
--
LOCK TABLES `countries_translations` WRITE;
/*!40000 ALTER TABLE `countries_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `countries_translations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `dashboard_widget_settings`
--
DROP TABLE IF EXISTS `dashboard_widget_settings`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `dashboard_widget_settings` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`settings` text COLLATE utf8mb4_unicode_ci,
`user_id` bigint unsigned NOT NULL,
`widget_id` bigint unsigned NOT NULL,
`order` tinyint unsigned NOT NULL DEFAULT '0',
`status` tinyint unsigned NOT NULL DEFAULT '1',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `dashboard_widget_settings_user_id_index` (`user_id`),
KEY `dashboard_widget_settings_widget_id_index` (`widget_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `dashboard_widget_settings`
--
LOCK TABLES `dashboard_widget_settings` WRITE;
/*!40000 ALTER TABLE `dashboard_widget_settings` DISABLE KEYS */;
/*!40000 ALTER TABLE `dashboard_widget_settings` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `dashboard_widgets`
--
DROP TABLE IF EXISTS `dashboard_widgets`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `dashboard_widgets` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(120) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `dashboard_widgets`
--
LOCK TABLES `dashboard_widgets` WRITE;
/*!40000 ALTER TABLE `dashboard_widgets` DISABLE KEYS */;
/*!40000 ALTER TABLE `dashboard_widgets` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_brands`
--
DROP TABLE IF EXISTS `ec_brands`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_brands` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`description` mediumtext COLLATE utf8mb4_unicode_ci,
`website` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`logo` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'published',
`order` tinyint unsigned NOT NULL DEFAULT '0',
`is_featured` tinyint unsigned NOT NULL DEFAULT '0',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_brands`
--
LOCK TABLES `ec_brands` WRITE;
/*!40000 ALTER TABLE `ec_brands` DISABLE KEYS */;
INSERT INTO `ec_brands` VALUES (1,'FoodPound','New Snacks Release',NULL,'main/brands/1.png','published',0,1,'2025-03-31 21:06:38','2025-03-31 21:06:38'),(2,'iTea JSC','Happy Tea 100% Organic. From $29.9',NULL,'main/brands/2.png','published',1,1,'2025-03-31 21:06:38','2025-03-31 21:06:38'),(3,'Soda Brand','Fresh Meat Sausage. BUY 2 GET 1!',NULL,'main/brands/3.png','published',2,1,'2025-03-31 21:06:38','2025-03-31 21:06:38'),(4,'Shofy','Fresh Meat Sausage. BUY 2 GET 1!',NULL,'main/brands/4.png','published',3,1,'2025-03-31 21:06:38','2025-03-31 21:06:38'),(5,'Soda Brand','Fresh Meat Sausage. BUY 2 GET 1!',NULL,'main/brands/5.png','published',4,1,'2025-03-31 21:06:38','2025-03-31 21:06:38');
/*!40000 ALTER TABLE `ec_brands` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_brands_translations`
--
DROP TABLE IF EXISTS `ec_brands_translations`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_brands_translations` (
`lang_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`ec_brands_id` bigint unsigned NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`description` mediumtext COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`lang_code`,`ec_brands_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_brands_translations`
--
LOCK TABLES `ec_brands_translations` WRITE;
/*!40000 ALTER TABLE `ec_brands_translations` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_brands_translations` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_cart`
--
DROP TABLE IF EXISTS `ec_cart`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_cart` (
`identifier` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL,
`instance` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL,
`content` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`identifier`,`instance`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_cart`
--
LOCK TABLES `ec_cart` WRITE;
/*!40000 ALTER TABLE `ec_cart` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_cart` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_currencies`
--
DROP TABLE IF EXISTS `ec_currencies`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_currencies` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`title` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`symbol` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL,
`is_prefix_symbol` tinyint unsigned NOT NULL DEFAULT '0',
`decimals` tinyint unsigned DEFAULT '0',
`order` int unsigned DEFAULT '0',
`is_default` tinyint NOT NULL DEFAULT '0',
`exchange_rate` double NOT NULL DEFAULT '1',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_currencies`
--
LOCK TABLES `ec_currencies` WRITE;
/*!40000 ALTER TABLE `ec_currencies` DISABLE KEYS */;
INSERT INTO `ec_currencies` VALUES (1,'USD','$',1,2,0,1,1,'2025-03-31 21:06:38','2025-03-31 21:06:38'),(2,'EUR','€',0,2,1,0,0.84,'2025-03-31 21:06:38','2025-03-31 21:06:38'),(3,'VND','₫',0,0,2,0,23203,'2025-03-31 21:06:38','2025-03-31 21:06:38'),(4,'NGN','₦',1,2,2,0,895.52,'2025-03-31 21:06:38','2025-03-31 21:06:38');
/*!40000 ALTER TABLE `ec_currencies` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_customer_addresses`
--
DROP TABLE IF EXISTS `ec_customer_addresses`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_customer_addresses` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`email` varchar(60) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`phone` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`country` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`state` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`city` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`address` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`customer_id` bigint unsigned NOT NULL,
`is_default` tinyint unsigned NOT NULL DEFAULT '0',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`zip_code` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_customer_addresses`
--
LOCK TABLES `ec_customer_addresses` WRITE;
/*!40000 ALTER TABLE `ec_customer_addresses` DISABLE KEYS */;
INSERT INTO `ec_customer_addresses` VALUES (1,'Lue Powlowski','customer@botble.com','+12028097929','TF','Montana','Everardoton','576 Upton Inlet Suite 580',1,1,'2025-03-31 21:06:39','2025-03-31 21:06:39','82744'),(2,'Lue Powlowski','customer@botble.com','+13206087349','AD','Florida','Lake Mercedesstad','64766 Kulas Groves Apt. 084',1,0,'2025-03-31 21:06:39','2025-03-31 21:06:39','04907'),(3,'Vena Treutel','vendor@botble.com','+16268751835','YT','District of Columbia','Edamouth','9792 Marks Pike Suite 876',2,1,'2025-03-31 21:06:40','2025-03-31 21:06:40','02163'),(4,'Vena Treutel','vendor@botble.com','+18289633302','JP','Connecticut','Romanville','9611 Idell Pike Apt. 967',2,0,'2025-03-31 21:06:40','2025-03-31 21:06:40','48852-6983'),(5,'Dr. Ena Wiza','lockman.caroline@example.org','+13477948862','JO','New Jersey','Lake Waylonfurt','2367 Thiel Mall',3,1,'2025-03-31 21:06:40','2025-03-31 21:06:40','40741-1550'),(6,'Astrid Wunsch I','okeefe.demarco@example.org','+12347306979','CG','Oklahoma','South Beth','230 Schoen Circle Suite 627',4,1,'2025-03-31 21:06:40','2025-03-31 21:06:40','42302-6344'),(7,'Prof. Gina Nolan','rowena.nitzsche@example.net','+13529398855','DJ','Vermont','Port Laurel','124 Colby Trail Suite 618',5,1,'2025-03-31 21:06:41','2025-03-31 21:06:41','02778-6840'),(8,'Tabitha Rau','schultz.kody@example.com','+18728934107','NC','Arkansas','New Lazaro','48239 Larson Ports',6,1,'2025-03-31 21:06:41','2025-03-31 21:06:41','96437'),(9,'Mattie Torphy','twila.lockman@example.com','+13012699557','PW','Rhode Island','Robertostad','1361 Reanna Mills Apt. 143',7,1,'2025-03-31 21:06:41','2025-03-31 21:06:41','07548-6257'),(10,'Mr. Kale Toy PhD','raufderhar@example.com','+15314016453','KP','Rhode Island','Port Sister','8309 Pacocha Ridges Suite 145',8,1,'2025-03-31 21:06:41','2025-03-31 21:06:41','52080'),(11,'Angelica Terry','bria83@example.com','+14588226403','CR','Wisconsin','Lake Kiraville','28691 Jessica Land',9,1,'2025-03-31 21:06:42','2025-03-31 21:06:42','59652'),(12,'Alvena Heller','zoey.hoeger@example.org','+15743778819','TL','Minnesota','Pricemouth','18619 Meaghan Mountain Suite 638',10,1,'2025-03-31 21:06:42','2025-03-31 21:06:42','50310');
/*!40000 ALTER TABLE `ec_customer_addresses` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_customer_password_resets`
--
DROP TABLE IF EXISTS `ec_customer_password_resets`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_customer_password_resets` (
`email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
KEY `ec_customer_password_resets_email_index` (`email`),
KEY `ec_customer_password_resets_token_index` (`token`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_customer_password_resets`
--
LOCK TABLES `ec_customer_password_resets` WRITE;
/*!40000 ALTER TABLE `ec_customer_password_resets` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_customer_password_resets` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_customer_recently_viewed_products`
--
DROP TABLE IF EXISTS `ec_customer_recently_viewed_products`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_customer_recently_viewed_products` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`customer_id` bigint unsigned NOT NULL,
`product_id` bigint unsigned NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_customer_recently_viewed_products`
--
LOCK TABLES `ec_customer_recently_viewed_products` WRITE;
/*!40000 ALTER TABLE `ec_customer_recently_viewed_products` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_customer_recently_viewed_products` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_customer_used_coupons`
--
DROP TABLE IF EXISTS `ec_customer_used_coupons`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_customer_used_coupons` (
`discount_id` bigint unsigned NOT NULL,
`customer_id` bigint unsigned NOT NULL,
PRIMARY KEY (`discount_id`,`customer_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_customer_used_coupons`
--
LOCK TABLES `ec_customer_used_coupons` WRITE;
/*!40000 ALTER TABLE `ec_customer_used_coupons` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_customer_used_coupons` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_customers`
--
DROP TABLE IF EXISTS `ec_customers`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_customers` (
`id` bigint unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`password` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`avatar` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`dob` date DEFAULT NULL,
`phone` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`confirmed_at` datetime DEFAULT NULL,
`email_verify_token` varchar(120) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`is_vendor` tinyint(1) NOT NULL DEFAULT '0',
`vendor_verified_at` datetime DEFAULT NULL,
`status` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'activated',
`block_reason` varchar(400) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`private_notes` text COLLATE utf8mb4_unicode_ci,
`stripe_account_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`stripe_account_active` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
UNIQUE KEY `ec_customers_email_unique` (`email`)
) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_customers`
--
LOCK TABLES `ec_customers` WRITE;
/*!40000 ALTER TABLE `ec_customers` DISABLE KEYS */;
INSERT INTO `ec_customers` VALUES (1,'Lue Powlowski','customer@botble.com','$2y$12$bGq4yvssxjy/lvz92h9vLOV3NqaObDLdkk.IbXo1I46.wIWmRysxK','main/customers/7.jpg','2000-03-06','+16286075317',NULL,'2025-03-31 21:06:39','2025-03-31 21:06:39','2000-03-06 04:06:39',NULL,0,NULL,'activated',NULL,NULL,NULL,0),(2,'Vena Treutel','vendor@botble.com','$2y$12$3XFeiKKw/uRiSk3VGyS9fOEevvjiEiqpwBpdj/1Qvvt.x1Im.ltyO','main/customers/10.jpg','1973-02-26','+12564484001',NULL,'2025-03-31 21:06:40','2025-03-31 21:06:45','1973-02-26 04:06:39',NULL,1,'2025-04-01 04:06:45','activated',NULL,NULL,NULL,0),(3,'Dr. Ena Wiza','lockman.caroline@example.org','$2y$12$YWiL1S2pCP3fpHgVSbk.He/lWC8ksOitK8tfDBCQnLGeg6N.7OAj6','main/customers/1.jpg','1933-02-16','+12183985945',NULL,'2025-03-31 21:06:40','2025-03-31 21:06:46','1933-02-16 04:06:39',NULL,1,'2025-04-01 04:06:45','activated',NULL,NULL,NULL,0),(4,'Astrid Wunsch I','okeefe.demarco@example.org','$2y$12$zjs5MNT64jR7LrdE507vyOe0eD.8vmF//ralMdNjb4oDdTwTSGpJa','main/customers/2.jpg','1895-02-08','+14057630470',NULL,'2025-03-31 21:06:40','2025-03-31 21:06:46','1895-02-08 04:06:39',NULL,1,'2025-04-01 04:06:45','activated',NULL,NULL,NULL,0),(5,'Prof. Gina Nolan','rowena.nitzsche@example.net','$2y$12$flK3sQtFpXZxvA9ZuOZ42uLsNF98hjogsBDX1sjXxQ883Oe3Aa.zi','main/customers/3.jpg','1857-01-27','+18436542033',NULL,'2025-03-31 21:06:41','2025-03-31 21:06:46','1857-01-27 04:06:39',NULL,1,'2025-04-01 04:06:45','activated',NULL,NULL,NULL,0),(6,'Tabitha Rau','schultz.kody@example.com','$2y$12$Wql8Vhw.f6d8dpovZtXEteL7m4oZaCq5WFp9igqSkd6ZWuWdrHbk.','main/customers/4.jpg','1821-01-08','+14458825172',NULL,'2025-03-31 21:06:41','2025-03-31 21:06:46','1821-01-08 04:06:39',NULL,1,'2025-04-01 04:06:45','activated',NULL,NULL,NULL,0),(7,'Mattie Torphy','twila.lockman@example.com','$2y$12$5VIsVnMy/qa9FlhnIm3aUesOAVqqPMTSNrV3/VNZO9pUKtRVtJIty','main/customers/5.jpg','1790-12-22','+14359124991',NULL,'2025-03-31 21:06:41','2025-03-31 21:06:47','1790-12-22 04:06:39',NULL,1,'2025-04-01 04:06:45','activated',NULL,NULL,NULL,0),(8,'Mr. Kale Toy PhD','raufderhar@example.com','$2y$12$9KWv4ElebUUpww0Y/z6CtuvPU72Bwsge8xwP7PEsx0SGOu.SKhnTq','main/customers/6.jpg','1747-11-23','+17544243450',NULL,'2025-03-31 21:06:41','2025-03-31 21:06:47','1747-11-23 04:06:39',NULL,1,'2025-04-01 04:06:45','activated',NULL,NULL,NULL,0),(9,'Angelica Terry','bria83@example.com','$2y$12$W5Jbh5sm1C/UB2qN2lKmkOB5nCAJp3A29fvMmTPBX./FsgssIOtuO','main/customers/7.jpg','1708-11-07','+14697142793',NULL,'2025-03-31 21:06:42','2025-03-31 21:06:47','1708-11-07 04:06:39',NULL,0,NULL,'activated',NULL,NULL,NULL,0),(10,'Alvena Heller','zoey.hoeger@example.org','$2y$12$hGEUrc.08MN0Hlz29F9sdupkQTqcNMc.3K8yevSYx.o5ePyWwVEM.','main/customers/8.jpg','1688-10-22','+19403658186',NULL,'2025-03-31 21:06:42','2025-03-31 21:06:47','1688-10-22 04:06:39',NULL,0,NULL,'activated',NULL,NULL,NULL,0);
/*!40000 ALTER TABLE `ec_customers` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_discount_customers`
--
DROP TABLE IF EXISTS `ec_discount_customers`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_discount_customers` (
`discount_id` bigint unsigned NOT NULL,
`customer_id` bigint unsigned NOT NULL,
PRIMARY KEY (`discount_id`,`customer_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_discount_customers`
--
LOCK TABLES `ec_discount_customers` WRITE;
/*!40000 ALTER TABLE `ec_discount_customers` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_discount_customers` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `ec_discount_product_categories`
--
DROP TABLE IF EXISTS `ec_discount_product_categories`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `ec_discount_product_categories` (
`discount_id` bigint unsigned NOT NULL,
`product_category_id` bigint unsigned NOT NULL,
PRIMARY KEY (`discount_id`,`product_category_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `ec_discount_product_categories`
--
LOCK TABLES `ec_discount_product_categories` WRITE;
/*!40000 ALTER TABLE `ec_discount_product_categories` DISABLE KEYS */;
/*!40000 ALTER TABLE `ec_discount_product_categories` ENABLE KEYS */;
UNLOCK TABLES;
--