-
Notifications
You must be signed in to change notification settings - Fork 0
/
demomago_ead.sql
5351 lines (4577 loc) · 246 KB
/
demomago_ead.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
-- phpMyAdmin SQL Dump
-- version 5.2.1
-- https://www.phpmyadmin.net/
--
-- Host: localhost:3306
-- Tempo de geração: 19/07/2023 às 10:10
-- Versão do servidor: 10.3.25-MariaDB
-- Versão do PHP: 8.1.16
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
SET time_zone = "+00:00";
/*!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 */;
--
-- Banco de dados: `demomago_ead`
--
-- --------------------------------------------------------
--
-- Estrutura para tabela `about_us_generals`
--
CREATE TABLE `about_us_generals` (
`id` bigint(20) UNSIGNED NOT NULL,
`gallery_area_title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`gallery_area_subtitle` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`gallery_third_image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`gallery_second_image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`gallery_first_image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`our_history_title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`our_history_subtitle` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`upgrade_skill_logo` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`upgrade_skill_title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`upgrade_skill_subtitle` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`upgrade_skill_button_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`team_member_logo` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`team_member_title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`team_member_subtitle` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`instructor_support_title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`instructor_support_subtitle` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Despejando dados para a tabela `about_us_generals`
--
INSERT INTO `about_us_generals` (`id`, `gallery_area_title`, `gallery_area_subtitle`, `gallery_third_image`, `gallery_second_image`, `gallery_first_image`, `our_history_title`, `our_history_subtitle`, `upgrade_skill_logo`, `upgrade_skill_title`, `upgrade_skill_subtitle`, `upgrade_skill_button_name`, `team_member_logo`, `team_member_title`, `team_member_subtitle`, `instructor_support_title`, `instructor_support_subtitle`, `created_at`, `updated_at`) VALUES
(1, 'Mere Tranquil Existence, That I Neglect My Talents Should', 'Possession Of My Entire Soul, Like These Sweet Mornings Of Spring Which I Enjoy With My Whole Heart. I Am Alone, And Charm Of Existence In This Spot, Which Was Created For The Bliss Of Souls Like Mine. I Am So Happy, My Dear Friend, So Absorbed In The Exquisite Sense Of Mere Tranquil Existence', 'uploads_demo/gallery/3.jpg', 'uploads_demo/gallery/2.jpg', 'uploads_demo/gallery/1.jpg', 'Our History', 'Possession Of My Entire Soul, Like These Sweet Mornings Of Spring Which I Enjoy With My Whole Heart. I Am Alone, And Charm Of Existence In This Spot Which', 'uploads_demo/about_us_general/upgrade.jpg', 'Upgrade Your Skills Today For Upgrading Your Life.', 'Noticed by me when I hear the buzz of the little world among the stalks, and grow familiar with the countless indescribable forms of the insects and flies, then I feel the presence stalks, and grow familiar with the countless', 'Find Your Course', 'uploads_demo/about_us_general/team-members-heading-img.png', 'Our Passionate Team Members', 'CHOOSE FROM 5,000 ONLINE VIDEO COURSES WITH NEW ADDITIONS', 'Quality Course, Instructor And Support', 'CHOOSE FROM 5,000 ONLINE VIDEO COURSES WITH NEW ADDITIONS', NULL, NULL);
-- --------------------------------------------------------
--
-- Estrutura para tabela `affiliate_history`
--
CREATE TABLE `affiliate_history` (
`id` bigint(20) UNSIGNED NOT NULL,
`hash` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`user_id` bigint(20) NOT NULL,
`buyer_id` bigint(20) NOT NULL,
`order_id` bigint(20) NOT NULL,
`order_item_id` bigint(20) NOT NULL,
`course_id` bigint(20) DEFAULT NULL,
`bundle_id` bigint(20) DEFAULT NULL,
`consultation_slot_id` bigint(20) DEFAULT NULL,
`actual_price` decimal(8,2) NOT NULL DEFAULT 0.00,
`discount` decimal(8,2) NOT NULL DEFAULT 0.00,
`commission` decimal(8,2) NOT NULL DEFAULT 0.00,
`commission_percentage` decimal(8,2) NOT NULL DEFAULT 0.00,
`status` tinyint(4) NOT NULL DEFAULT 0 COMMENT '0=due,1=paid',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Estrutura para tabela `affiliate_request`
--
CREATE TABLE `affiliate_request` (
`id` bigint(20) UNSIGNED NOT NULL,
`user_id` bigint(20) UNSIGNED NOT NULL,
`address` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`comments` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`letter` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`affiliate_code` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`status` tinyint(4) NOT NULL DEFAULT 0,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Estrutura para tabela `answers`
--
CREATE TABLE `answers` (
`id` bigint(20) UNSIGNED NOT NULL,
`user_id` bigint(20) NOT NULL,
`exam_id` bigint(20) NOT NULL,
`question_id` bigint(20) NOT NULL,
`question_option_id` bigint(20) NOT NULL,
`take_exam_id` bigint(20) NOT NULL,
`multiple_choice_answer` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`is_correct` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'yes, no',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Estrutura para tabela `assignments`
--
CREATE TABLE `assignments` (
`id` bigint(20) UNSIGNED NOT NULL,
`uuid` char(36) COLLATE utf8mb4_unicode_ci NOT NULL,
`user_id` bigint(20) UNSIGNED NOT NULL,
`course_id` bigint(20) UNSIGNED NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`description` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`marks` int(11) DEFAULT NULL,
`file` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`original_filename` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`size` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`status` tinyint(4) DEFAULT 1 COMMENT '1=active, 2=deactivated',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Estrutura para tabela `assignment_files`
--
CREATE TABLE `assignment_files` (
`id` bigint(20) UNSIGNED NOT NULL,
`assignment_id` bigint(20) UNSIGNED DEFAULT NULL,
`file` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Estrutura para tabela `assignment_submits`
--
CREATE TABLE `assignment_submits` (
`id` bigint(20) UNSIGNED NOT NULL,
`uuid` char(36) COLLATE utf8mb4_unicode_ci NOT NULL,
`user_id` bigint(20) UNSIGNED DEFAULT NULL,
`course_id` bigint(20) UNSIGNED DEFAULT NULL,
`assignment_id` bigint(20) UNSIGNED DEFAULT NULL,
`marks` double(8,2) DEFAULT NULL,
`notes` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`file` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`original_filename` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`size` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Estrutura para tabela `banks`
--
CREATE TABLE `banks` (
`id` bigint(20) UNSIGNED NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`account_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`account_number` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`status` tinyint(4) NOT NULL DEFAULT 1 COMMENT '1=active,0=inactive',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Estrutura para tabela `beneficiaries`
--
CREATE TABLE `beneficiaries` (
`id` bigint(20) UNSIGNED NOT NULL,
`uuid` char(36) COLLATE utf8mb4_unicode_ci NOT NULL,
`user_id` bigint(20) UNSIGNED NOT NULL,
`beneficiary_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`type` tinyint(4) NOT NULL,
`card_number` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`card_holder_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`expire_month` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`expire_year` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`bank_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`bank_account_number` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`bank_account_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`bank_routing_number` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`paypal_email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`status` tinyint(4) NOT NULL DEFAULT 1,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Estrutura para tabela `blogs`
--
CREATE TABLE `blogs` (
`id` bigint(20) UNSIGNED NOT NULL,
`uuid` char(36) COLLATE utf8mb4_unicode_ci NOT NULL,
`user_id` bigint(20) NOT NULL,
`title` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`slug` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`details` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
`image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`status` tinyint(4) NOT NULL DEFAULT 0 COMMENT '1=published, 0=unpublished',
`blog_category_id` bigint(20) UNSIGNED DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Despejando dados para a tabela `blogs`
--
INSERT INTO `blogs` (`id`, `uuid`, `user_id`, `title`, `slug`, `details`, `image`, `status`, `blog_category_id`, `created_at`, `updated_at`) VALUES
(1, '40a5dc67-3cd9-4139-8edb-1ba47bd798db', 1, '60 Common C# Interview Questions in 2022: Ace Your Next Interview', '60-common-c-interview-questions-in-2022-ace-your-next-interview', 'Getting hired as a programmer can be a challenge. There’s a lot of talent out there, and there’s a lot of competition. Many employers are wary of “paper programmers”; people who have no programming experience but just a degree. Because of this, they often ask in-depth programming questions during their interview. These questions can be hard to answer if you haven’t properly prepared. In this article, I’ll help you prepare to ace your next interview with these questions related to the C# programming language. At the same time, you might want to practice with some C# projects. These 50 essential C# questions and answers will help you understand the technical concepts of the language. You’ll walk into a meeting with the hiring manager with confidence. As a developer myself, I use these concepts daily.', 'uploads_demo/blog/1.jpg', 1, 1, '2022-12-05 01:35:33', '2022-12-05 01:35:33'),
(2, 'a869eb40-1962-48bd-aa8b-6fe69e2a750e', 1, 'PostgreSQL vs. MySQL: Which SQL Platform Should You Use?', 'postgresql-vs-mysql-which-sql-platform-should-you-use', 'MySQL and PostgreSQL are both leading database technologies built on a foundation of SQL: Structured Query Language. SQL forms the basis of how to create, access, update, and otherwise interact with data stored in a relational database. While MySQL has been the most popular platform for many years, PostgreSQL is another major contender. Many database administrators and developers will know both technologies, which are much more similar than they are different. You can learn more about the history of SQL and how the various “flavors” came to be by watching this brief video: Depending on what you’re trying to create, the data you’re trying to manage, and your own background as a programmer or analyst, you may find one language preferable over the other. But in terms of popularity and marketability, both are widely used, with MySQL maintaining the advantage here. Compared to PostgreSQL, MySQL has the largest market share and, therefore, the most job opportunities. Here’s what you need to know about MySQL vs. PostgreSQL — the differences, benefits, and disadvantages — as well as some basic information about SQL and database platforms.', 'uploads_demo/blog/2.jpg', 1, 2, '2022-12-05 01:35:33', '2022-12-05 01:35:33'),
(3, '78eb086d-192e-4f77-9b3e-25cf9e4d50be', 1, 'Java vs. Python: Which Is the Best Programming Language for You?', 'java-vs-python-which-is-the-best-programming-language-for-you', 'Java and Python are both excellent choices for a beginning programmer. You really can’t go wrong by choosing either one. Here are some things these languages have in common. Both are popular and in high demand.Both are open source and don’t require a paid license to use for developers. In the case of Java, if you use the official Oracle Java version, there may be a fee for commercial use payable by your customer/employer when deploying your Java application. However, there are free runtime versions available from multiple vendors as well. You can get started coding in either language today as long as you have an internet connection to download the installation files and a computer that runs Windows, OS X, or Linux.The two languages do have their differences, and developers sometimes prefer one or the other for various reasons. Below is a discussion of those reasons, with hopefully enough information to help you decide which language is the one for you.', 'uploads_demo/blog/3.jpg', 1, 1, '2022-12-05 01:35:33', '2022-12-05 01:35:33'),
(4, 'ba833949-5b33-4fab-b72b-dcd78e2dd340', 1, 'Learn Coding in Scratch with a Cool Game Idea', 'learn-coding-in-scratch-with-a-cool-game-idea', 'A few years ago, the creation of programs and applications was aimed at only a few people with specialized knowledge. Lately, though, programming for beginners has been possible, thanks to software that has been developed, such as Scratch. In this article, you will see how to create your own game in an easy and fun way.\r\nWhy start Scratch Coding?\r\nThe rate at which jobs in the IT sector are growing is almost twice as high as in other industries, and this is only an indication of work in future new technologies. Researchers estimate that “the digital economy is worth $11.5 trillion globally, equivalent to 15.5 percent of global GDP and has grown two and a half times faster than global GDP over the past 15 years.”\r\nIn a few years, programming knowledge will be fully integrated into educational programs for every age. Using coding concepts, it’s possible to design projects that utilize very similar guidelines and rubrics for a digital project, thereby giving students the opportunity to learn about their topic and sharpen their coding skills at the same time. Future human resources, generations Y and Z, will have at their core the digital skills needed to program.', 'uploads_demo/blog/2.jpg', 1, 1, '2022-12-05 01:35:33', '2022-12-05 01:35:33');
-- --------------------------------------------------------
--
-- Estrutura para tabela `blog_categories`
--
CREATE TABLE `blog_categories` (
`id` bigint(20) UNSIGNED NOT NULL,
`uuid` char(36) COLLATE utf8mb4_unicode_ci NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`slug` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`status` tinyint(4) NOT NULL DEFAULT 0 COMMENT '1=active, 0=deactivated',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Despejando dados para a tabela `blog_categories`
--
INSERT INTO `blog_categories` (`id`, `uuid`, `name`, `slug`, `status`, `created_at`, `updated_at`) VALUES
(1, '28828707-9415-4068-adef-12641516486a', 'Development', 'development', 1, '2022-12-05 01:35:33', '2022-12-05 01:35:33'),
(2, 'ebe375f1-0a4a-4b3a-bf56-028824c9507f', 'IT & Software', 'it-software', 1, '2022-12-05 01:35:33', '2022-12-05 01:35:33'),
(3, '61efe125-6f32-4c7a-b6fe-061a3df3dbd2', 'Data Science', 'data-science', 1, '2022-12-05 01:35:33', '2022-12-05 01:35:33'),
(4, '890e77d8-0b8a-4073-9e91-c24d675e1d39', 'Soft Skills', 'soft-skills', 1, '2022-12-05 01:35:33', '2022-12-05 01:35:33'),
(5, '911dcac5-1200-4fc4-94f2-2caea6251453', 'Business', 'business', 1, '2022-12-05 01:35:33', '2022-12-05 01:35:33'),
(6, 'ad757f0e-a7db-4a60-8efb-0858880690c8', 'Marketing', 'marketing', 1, '2022-12-05 01:35:33', '2022-12-05 01:35:33'),
(7, 'e0637550-8560-4e2d-b4c4-fddc8b7bf1a6', 'Design', 'design', 1, '2022-12-05 01:35:33', '2022-12-05 01:35:33');
-- --------------------------------------------------------
--
-- Estrutura para tabela `blog_comments`
--
CREATE TABLE `blog_comments` (
`id` bigint(20) UNSIGNED NOT NULL,
`blog_id` bigint(20) UNSIGNED DEFAULT NULL,
`user_id` bigint(20) UNSIGNED DEFAULT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`comment` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`status` tinyint(4) DEFAULT 1 COMMENT '1=active, 2=deactivate',
`parent_id` bigint(20) UNSIGNED DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Estrutura para tabela `blog_tags`
--
CREATE TABLE `blog_tags` (
`id` bigint(20) UNSIGNED NOT NULL,
`blog_id` bigint(20) UNSIGNED DEFAULT NULL,
`tag_id` bigint(20) UNSIGNED DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Estrutura para tabela `booking_histories`
--
CREATE TABLE `booking_histories` (
`id` bigint(20) UNSIGNED NOT NULL,
`uuid` char(36) COLLATE utf8mb4_unicode_ci NOT NULL,
`order_id` bigint(20) UNSIGNED NOT NULL,
`order_item_id` bigint(20) UNSIGNED NOT NULL,
`instructor_user_id` bigint(20) UNSIGNED NOT NULL,
`student_user_id` bigint(20) UNSIGNED NOT NULL,
`consultation_slot_id` bigint(20) UNSIGNED NOT NULL,
`date` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`day` tinyint(4) NOT NULL COMMENT '0=sunday,1=monday,2=tuesday,3=wednesday,4=thursday,5=friday,6=saturday',
`time` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`duration` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`status` tinyint(4) NOT NULL COMMENT '0=Pending,1=Approve,2=Cancel,3=Completed',
`type` tinyint(4) NOT NULL DEFAULT 1 COMMENT '1=In-person,2=Online',
`start_url` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`join_url` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meeting_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meeting_password` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meeting_host_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'zoom,bbb,jitsi',
`moderator_pw` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'use only for bbb',
`attendee_pw` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'use only for bbb',
`cancel_reason` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`send_back_money_status` tinyint(4) DEFAULT 0 COMMENT '1=Yes, 0=No',
`back_admin_commission` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Admin Commission',
`back_owner_balance` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'Instructor Commission',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Estrutura para tabela `bundles`
--
CREATE TABLE `bundles` (
`id` bigint(20) UNSIGNED NOT NULL,
`uuid` char(36) COLLATE utf8mb4_unicode_ci NOT NULL,
`user_id` bigint(20) UNSIGNED DEFAULT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`slug` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`overview` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`price` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`status` tinyint(4) DEFAULT NULL COMMENT '1=active,0=disable',
`is_subscription_enable` tinyint(4) NOT NULL DEFAULT 1,
`access_period` int(11) NOT NULL DEFAULT 0,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Estrutura para tabela `bundle_courses`
--
CREATE TABLE `bundle_courses` (
`id` bigint(20) UNSIGNED NOT NULL,
`bundle_id` bigint(20) UNSIGNED DEFAULT NULL,
`course_id` bigint(20) UNSIGNED DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Estrutura para tabela `cart_management`
--
CREATE TABLE `cart_management` (
`id` bigint(20) UNSIGNED NOT NULL,
`user_id` bigint(20) UNSIGNED DEFAULT NULL,
`receiver_info` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`course_id` bigint(20) UNSIGNED DEFAULT NULL,
`product_id` bigint(20) UNSIGNED DEFAULT NULL,
`consultation_slot_id` bigint(20) UNSIGNED DEFAULT NULL,
`consultation_details` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`consultation_date` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`consultation_available_type` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`bundle_id` bigint(20) UNSIGNED DEFAULT NULL,
`bundle_course_ids` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`promotion_id` bigint(20) UNSIGNED DEFAULT NULL,
`coupon_id` bigint(20) UNSIGNED DEFAULT NULL,
`is_subscription_enable` bigint(20) UNSIGNED NOT NULL,
`main_price` decimal(8,2) NOT NULL DEFAULT 0.00,
`price` decimal(8,2) NOT NULL DEFAULT 0.00,
`discount` decimal(8,2) NOT NULL DEFAULT 0.00,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`reference` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Estrutura para tabela `categories`
--
CREATE TABLE `categories` (
`id` bigint(20) UNSIGNED NOT NULL,
`uuid` char(36) COLLATE utf8mb4_unicode_ci NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`is_feature` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'no' COMMENT 'yes, no',
`slug` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`status` tinyint(4) NOT NULL DEFAULT 1 COMMENT '1=active, 0=inactive',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Despejando dados para a tabela `categories`
--
INSERT INTO `categories` (`id`, `uuid`, `name`, `image`, `is_feature`, `slug`, `status`, `created_at`, `updated_at`) VALUES
(1, '31c77dbb-0271-406e-afdd-da92e4a37f92', 'Desenvolvimento', 'uploads_demo/category/1.png', 'yes', 'Desenvolvimento', 1, '2022-12-05 01:35:33', '2023-07-07 16:47:37'),
(2, 'ac42d76f-65cc-463a-8428-733c305215e4', 'TI e Software', 'uploads_demo/category/2.png', 'yes', 'TI-e-Software', 1, '2022-12-05 01:35:33', '2023-07-07 16:47:25'),
(3, 'd8cde16c-e98b-4991-adf9-f2b150789c90', 'Office Productivity', 'uploads_demo/category/3.png', 'yes', 'office-productivity', 1, '2022-12-05 01:35:33', '2022-12-05 01:35:33'),
(4, '07e99f6a-c5b7-4fe1-9503-f180bb8484f9', 'Personal Development', 'uploads_demo/category/4.png', 'yes', 'personal-development', 1, '2022-12-05 01:35:33', '2022-12-05 01:35:33'),
(5, '44b94434-0327-4e77-b3b7-ad2523809bce', 'Negócios', NULL, 'no', 'Negócios', 1, '2022-12-05 01:35:33', '2023-07-07 16:47:12'),
(6, '57e18cf4-0050-4baf-8e10-3d9a65eaf8ed', 'Marketing', NULL, 'no', 'marketing', 1, '2022-12-05 01:35:33', '2022-12-05 01:35:33'),
(7, '90cd37ac-b804-4095-a471-3651ec40718a', 'Projeto', NULL, 'no', 'Projeto', 1, '2022-12-05 01:35:33', '2023-07-07 16:47:00'),
(8, '4441d186-fab2-4e8e-a4ed-ab7fc24f6e71', 'Saúde', NULL, 'no', 'Saúde', 1, '2022-12-05 01:35:33', '2023-07-07 16:46:48'),
(9, 'a1d1c370-5ce4-4bbc-9b27-5e8645282259', 'Contabilidade Finanças', NULL, 'no', 'Contabilidade-Finanças', 1, '2022-12-05 01:35:33', '2023-07-07 16:46:36');
-- --------------------------------------------------------
--
-- Estrutura para tabela `certificates`
--
CREATE TABLE `certificates` (
`id` bigint(20) UNSIGNED NOT NULL,
`uuid` char(36) COLLATE utf8mb4_unicode_ci NOT NULL,
`certificate_number` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`show_number` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT 'yes' COMMENT 'yes, no',
`number_x_position` int(11) DEFAULT 0,
`number_y_position` int(11) DEFAULT 0,
`number_font_size` int(11) DEFAULT 18,
`number_font_color` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`title_x_position` int(11) DEFAULT 0,
`title_y_position` int(11) DEFAULT 0,
`title_font_size` int(11) DEFAULT 20,
`title_font_color` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`show_date` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes' COMMENT 'yes, no',
`date_x_position` int(11) DEFAULT 0,
`date_y_position` int(11) DEFAULT 16,
`date_font_size` int(11) DEFAULT 30,
`date_font_color` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`show_student_name` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes' COMMENT 'yes, no',
`student_name_x_position` int(11) DEFAULT 0,
`student_name_y_position` int(11) DEFAULT 16,
`student_name_font_size` int(11) DEFAULT 32,
`student_name_font_color` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`body` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`body_max_length` int(11) DEFAULT 80,
`body_x_position` int(11) DEFAULT 0,
`body_y_position` int(11) DEFAULT 16,
`body_font_size` int(11) DEFAULT 20,
`body_font_color` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`role_1_show` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'yes, no',
`role_1_title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`role_1_signature` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`role_1_x_position` int(11) DEFAULT 16,
`role_1_y_position` int(11) DEFAULT 16,
`role_1_font_size` int(11) DEFAULT 18,
`role_1_font_color` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`role_2_show` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'yes, no',
`role_2_title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`role_2_x_position` int(11) DEFAULT 0,
`role_2_y_position` int(11) DEFAULT 0,
`role_2_font_size` int(11) DEFAULT 18,
`role_2_font_color` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`path` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`status` tinyint(4) NOT NULL DEFAULT 1,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Despejando dados para a tabela `certificates`
--
INSERT INTO `certificates` (`id`, `uuid`, `certificate_number`, `image`, `show_number`, `number_x_position`, `number_y_position`, `number_font_size`, `number_font_color`, `title`, `title_x_position`, `title_y_position`, `title_font_size`, `title_font_color`, `show_date`, `date_x_position`, `date_y_position`, `date_font_size`, `date_font_color`, `show_student_name`, `student_name_x_position`, `student_name_y_position`, `student_name_font_size`, `student_name_font_color`, `body`, `body_max_length`, `body_x_position`, `body_y_position`, `body_font_size`, `body_font_color`, `role_1_show`, `role_1_title`, `role_1_signature`, `role_1_x_position`, `role_1_y_position`, `role_1_font_size`, `role_1_font_color`, `role_2_show`, `role_2_title`, `role_2_x_position`, `role_2_y_position`, `role_2_font_size`, `role_2_font_color`, `path`, `status`, `created_at`, `updated_at`) VALUES
(1, '82fe63be-3553-4f7f-9105-ebf28a7281dc', '7614445', NULL, 'yes', NULL, NULL, NULL, '#363234', NULL, NULL, NULL, NULL, '#000000', 'yes', NULL, NULL, NULL, '#363234', 'yes', NULL, NULL, NULL, '#363234', NULL, 80, NULL, NULL, NULL, '#363234', NULL, NULL, NULL, NULL, NULL, NULL, '#363234', NULL, NULL, NULL, NULL, NULL, '#000000', NULL, 0, '2023-07-07 19:03:45', '2023-07-07 19:03:45');
-- --------------------------------------------------------
--
-- Estrutura para tabela `certificate_by_instructors`
--
CREATE TABLE `certificate_by_instructors` (
`id` bigint(20) UNSIGNED NOT NULL,
`uuid` char(36) COLLATE utf8mb4_unicode_ci NOT NULL,
`course_id` bigint(20) DEFAULT NULL,
`certificate_id` bigint(20) DEFAULT NULL,
`title` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`title_x_position` int(11) NOT NULL DEFAULT 0,
`title_y_position` int(11) NOT NULL DEFAULT 0,
`title_font_size` int(11) NOT NULL DEFAULT 20,
`title_font_color` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`body` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`body_max_length` int(11) NOT NULL DEFAULT 80,
`body_x_position` int(11) NOT NULL DEFAULT 0,
`body_y_position` int(11) NOT NULL DEFAULT 16,
`body_font_size` int(11) NOT NULL DEFAULT 20,
`body_font_color` varchar(25) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`signature` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`role_2_x_position` int(11) NOT NULL DEFAULT 0,
`role_2_y_position` int(11) NOT NULL DEFAULT 10,
`path` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Estrutura para tabela `chats`
--
CREATE TABLE `chats` (
`id` bigint(20) UNSIGNED NOT NULL,
`sender_id` int(11) NOT NULL,
`receiver_id` int(11) NOT NULL,
`course_id` int(11) NOT NULL,
`message` text COLLATE utf8mb4_unicode_ci NOT NULL,
`is_seen` tinyint(1) NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Estrutura para tabela `chat_messages`
--
CREATE TABLE `chat_messages` (
`id` bigint(20) UNSIGNED NOT NULL,
`incoming_user_id` bigint(20) UNSIGNED DEFAULT NULL,
`outgoing_user_id` bigint(20) UNSIGNED DEFAULT NULL,
`message` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`view` tinyint(4) DEFAULT 2 COMMENT '1=seen,2=not seen',
`created_user_type` tinyint(4) DEFAULT NULL COMMENT '1=student,2=instructor',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Estrutura para tabela `cities`
--
CREATE TABLE `cities` (
`id` bigint(20) UNSIGNED NOT NULL,
`state_id` bigint(20) NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Despejando dados para a tabela `cities`
--
INSERT INTO `cities` (`id`, `state_id`, `name`, `created_at`, `updated_at`) VALUES
(1, 1, 'Dhanmondi', NULL, NULL),
(2, 1, 'Bannai', NULL, NULL),
(3, 2, 'Nirala', NULL, NULL),
(4, 2, 'Zero Point', NULL, NULL),
(5, 3, 'Tomchombridge', NULL, NULL),
(6, 3, 'Cantonment', NULL, NULL),
(7, 1, 'Campo Grande', NULL, '2023-07-07 15:44:09'),
(8, 4, 'Alamo', NULL, NULL),
(9, 5, 'Albin', NULL, NULL),
(10, 6, 'Bartow', NULL, NULL),
(11, 7, 'Oban', NULL, NULL),
(12, 8, 'Holywood', NULL, NULL),
(13, 9, 'Ely', NULL, NULL);
-- --------------------------------------------------------
--
-- Estrutura para tabela `client_logos`
--
CREATE TABLE `client_logos` (
`id` bigint(20) UNSIGNED NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`logo` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Despejando dados para a tabela `client_logos`
--
INSERT INTO `client_logos` (`id`, `name`, `logo`, `created_at`, `updated_at`) VALUES
(1, 'Ovita', 'uploads_demo/client-logo/1.png', '2022-12-05 01:35:33', '2022-12-05 01:35:33'),
(2, 'Vigon', 'uploads_demo/client-logo/2.png', '2022-12-05 01:35:33', '2022-12-05 01:35:33'),
(3, 'Betribe', 'uploads_demo/client-logo/3.png', '2022-12-05 01:35:33', '2022-12-05 01:35:33'),
(4, 'Parsit', 'uploads_demo/client-logo/4.png', '2022-12-05 01:35:33', '2022-12-05 01:35:33'),
(5, 'Karika', 'uploads_demo/client-logo/5.png', '2022-12-05 01:35:33', '2022-12-05 01:35:33');
-- --------------------------------------------------------
--
-- Estrutura para tabela `consultation_slots`
--
CREATE TABLE `consultation_slots` (
`id` bigint(20) UNSIGNED NOT NULL,
`user_id` bigint(20) UNSIGNED NOT NULL,
`day` tinyint(4) NOT NULL COMMENT '0=sunday,1=monday,2=tuesday,3=wednesday,4=thursday,5=friday,6=saturday',
`time` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`duration` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`hour_duration` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`minute_duration` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Estrutura para tabela `contact_us`
--
CREATE TABLE `contact_us` (
`id` bigint(20) UNSIGNED NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`contact_us_issue_id` bigint(20) UNSIGNED DEFAULT NULL,
`message` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Estrutura para tabela `contact_us_issues`
--
CREATE TABLE `contact_us_issues` (
`id` bigint(20) UNSIGNED NOT NULL,
`uuid` char(36) COLLATE utf8mb4_unicode_ci NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`status` tinyint(4) NOT NULL DEFAULT 0 COMMENT '1=active, 0=deactivated',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Estrutura para tabela `countries`
--
CREATE TABLE `countries` (
`id` bigint(20) UNSIGNED NOT NULL,
`short_name` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL,
`country_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`flag` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`slug` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`phonecode` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`continent` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Despejando dados para a tabela `countries`
--
INSERT INTO `countries` (`id`, `short_name`, `country_name`, `flag`, `slug`, `phonecode`, `continent`, `created_at`, `updated_at`) VALUES
(1, 'BD', 'Bangladesh', '', 'bangladesh', '+88', 'Asia', NULL, NULL),
(2, 'BRL', 'Brasil', 'BRL', '', '67 992875364', 'America', NULL, '2023-07-07 15:43:23'),
(3, 'UK', 'United Kingdom', '', 'united-kingdom', '+44', 'Europe', NULL, NULL);
-- --------------------------------------------------------
--
-- Estrutura para tabela `coupons`
--
CREATE TABLE `coupons` (
`id` bigint(20) UNSIGNED NOT NULL,
`uuid` char(36) COLLATE utf8mb4_unicode_ci NOT NULL,
`coupon_code_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`coupon_type` tinyint(4) NOT NULL COMMENT '1=Global,2=Instructor, 3=Course',
`status` tinyint(4) NOT NULL DEFAULT 1 COMMENT '1=activate, 0=deactivated',
`creator_id` bigint(20) UNSIGNED DEFAULT NULL COMMENT 'creator_id=user_id',
`percentage` decimal(8,2) DEFAULT 0.00,
`minimum_amount` int(11) DEFAULT NULL,
`maximum_use_limit` int(11) DEFAULT NULL,
`start_date` date DEFAULT NULL,
`end_date` date DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Estrutura para tabela `coupon_courses`
--
CREATE TABLE `coupon_courses` (
`id` bigint(20) UNSIGNED NOT NULL,
`coupon_id` bigint(20) UNSIGNED DEFAULT NULL,
`course_id` bigint(20) UNSIGNED DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Estrutura para tabela `coupon_instructors`
--
CREATE TABLE `coupon_instructors` (
`id` bigint(20) UNSIGNED NOT NULL,
`coupon_id` bigint(20) UNSIGNED DEFAULT NULL,
`user_id` bigint(20) UNSIGNED DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Estrutura para tabela `courses`
--
CREATE TABLE `courses` (
`id` bigint(20) UNSIGNED NOT NULL,
`uuid` char(36) COLLATE utf8mb4_unicode_ci NOT NULL,
`user_id` bigint(20) NOT NULL,
`course_type` tinyint(4) NOT NULL DEFAULT 1 COMMENT '1=general, 2=scorm',
`instructor_id` bigint(20) DEFAULT NULL,
`category_id` bigint(20) DEFAULT NULL,
`subcategory_id` bigint(20) DEFAULT NULL,
`course_language_id` bigint(20) DEFAULT NULL,
`difficulty_level_id` bigint(20) DEFAULT NULL,
`title` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`subtitle` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`description` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
`feature_details` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`price` decimal(8,2) NOT NULL DEFAULT 0.00,
`old_price` decimal(8,2) DEFAULT 0.00,
`learner_accessibility` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL COMMENT 'paid,free',
`image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`intro_video_check` tinyint(4) DEFAULT NULL COMMENT '1=normal video, 2=youtube_video',
`video` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`youtube_video_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`is_subscription_enable` tinyint(4) NOT NULL DEFAULT 1,
`private_mode` tinyint(4) NOT NULL DEFAULT 0,
`slug` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`is_featured` tinyint(4) NOT NULL DEFAULT 0,
`status` tinyint(4) NOT NULL DEFAULT 0 COMMENT '0=pending, 1=published, 2=waiting_for_review, 3=hold, 4=draft',
`average_rating` decimal(8,2) DEFAULT 0.00,
`drip_content` tinyint(4) NOT NULL DEFAULT 1 COMMENT '1=Show All, 2=sequence, 3=unlock after x day, 4=unlock by date, 5=unlock after finish pre-requisite',
`access_period` int(11) DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`organization_id` bigint(20) UNSIGNED DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Despejando dados para a tabela `courses`
--
INSERT INTO `courses` (`id`, `uuid`, `user_id`, `course_type`, `instructor_id`, `category_id`, `subcategory_id`, `course_language_id`, `difficulty_level_id`, `title`, `subtitle`, `description`, `feature_details`, `price`, `old_price`, `learner_accessibility`, `image`, `intro_video_check`, `video`, `youtube_video_id`, `is_subscription_enable`, `private_mode`, `slug`, `is_featured`, `status`, `average_rating`, `drip_content`, `access_period`, `created_at`, `updated_at`, `organization_id`) VALUES
(1, '2c2cd598-a5c7-442b-9a47-6f9c8b91b504', 2, 1, 1, 2, 9, 1, 1, 'DBA Oracle: Inclui GRID 21c & Oracle 19c Oracle Linux 8 2023', 'Aprenda Oracle de Forma Definitiva e Conquiste uma Vaga em um dos Mercados de Trabalho mais Bem Remunerados de T.I', 'Se você está procurando uma carreira como um Administrador de Banco de Dados Oracle, este treinamento é essencial para você.\r\n\r\nFazer um treinamento em Administração de Banco de Dados Oracle 21c pode ajudá-lo a conseguir um emprego melhor por várias razões.\r\n\r\nPrimeiro, o Oracle é um dos principais sistemas de gerenciamento de banco de dados do mundo, amplamente utilizado em grandes empresas e organizações governamentais. Dominar a administração de bancos de dados Oracle é uma habilidade altamente valorizada no mercado de trabalho, e muitas empresas estão procurando profissionais com experiência em Oracle para gerenciar seus bancos de dados.\r\n\r\nSegundo, o mercado de trabalho para profissionais de tecnologia, incluindo administradores de bancos de dados, é altamente competitivo e em constante evolução. Os empregadores estão procurando profissionais com habilidades atualizadas e conhecimento em tecnologias recentes. O Oracle 21c é a versão mais recente do sistema de gerenciamento de banco de dados Oracle, e um treinamento em sua administração o colocaria na vanguarda das tecnologias mais recentes.\r\n\r\nTerceiro, um treinamento em administração de bancos de dados Oracle 21c também pode ajudá-lo a desenvolver habilidades em outras áreas relacionadas, como backup e recuperação, gerenciamento de memória e administração de parâmetros. Estas são habilidades que são altamente valorizadas pelas empresas que procuram contratar administradores de bancos de dados Oracle.\r\n\r\nPor último, o treinamento em administração de bancos de dados Oracle 21c pode ajudá-lo a se destacar em entrevistas de emprego e a negociar salários mais altos. Ao mostrar que você tem habilidades e conhecimentos atualizados em uma área altamente valorizada, você pode se destacar entre outros candidatos e ser considerado para posições mais altas e melhor remuneradas.\r\n\r\nEm resumo, um treinamento em administração de bancos de dados Oracle 21c pode ajudá-lo a conseguir um emprego melhor, aumentar suas chances de ser contratado e negociar salários mais altos.\r\n\r\nNeste curso, você aprenderá a instalar e configurar o Oracle Linux 8, instalar o Oracle Grid Infrastructure 21c e o Oracle RDBMS 21c, gerenciar tablespaces, datafiles, controlfiles, redo log files e arquivos de log arquivados, criar objetos no banco de dados Oracle, administrar parâmetros no Oracle, gerenciar estruturas de memória SGA e PGA, fazer backup e recuperação Oracle com RMAN e SQL Language básico.\r\n\r\nA seguir, descrevemos cada módulo deste treinamento em detalhes:\r\n\r\n\r\n Criação da sua máquina virtual no Oracle Virtual Box Neste módulo, você aprenderá a criar uma máquina virtual no Oracle Virtual Box. Você também aprenderá a configurar o tamanho do disco rígido, memória RAM e outras configurações necessárias para executar o Oracle Linux 8.\r\n\r\n\r\n Instalação e configuração do Oracle Linux 8 Neste módulo, você aprenderá a instalar e configurar o Oracle Linux 8 em sua máquina virtual. Você também aprenderá a instalar as ferramentas necessárias para o curso, como o Oracle Grid Infrastructure 21c e o Oracle RDBMS 21c.\r\n\r\n\r\n Preparação do Oracle Linux 8 para instalação do Grid Infrastructure 21c Neste módulo, você aprenderá a preparar o Oracle Linux 8 para a instalação do Grid Infrastructure 21c. Isso inclui a configuração das variáveis de ambiente necessárias, a criação de usuários e grupos, a configuração do firewall e a instalação de pré-requisitos.\r\n\r\n\r\n Instalação do GRID 21c no Oracle Linux 8 Neste módulo, você aprenderá a instalar o Oracle Grid Infrastructure 21c no Oracle Linux 8. Você também aprenderá a configurar o Clusterware, que é um software de cluster que gerencia a alta disponibilidade dos bancos de dados Oracle.\r\n\r\n\r\n Instalação do ORACLE RDBMS 21c no Oracle Linux 8 Neste módulo, você aprenderá a instalar o Oracle RDBMS 21c no Oracle Linux 8. Você também aprenderá a criar um banco de dados Oracle, criar usuários e conceder permissões.\r\n\r\n\r\n Gerenciamento de tablespaces e datafiles Neste módulo, você aprenderá a gerenciar tablespaces e datafiles. Você aprenderá a criar e excluir tablespaces e datafiles, alterar o tamanho dos datafiles e visualizar informações sobre tablespaces e datafiles.\r\n\r\n\r\n Gerenciamento de controlfiles Neste módulo, você aprenderá a gerenciar controlfiles. Você aprenderá a criar e excluir controlfiles, fazer backup e restaurar controlfiles e visualizar informações sobre controlfiles.\r\n\r\n\r\n Gerenciamento de redo log files Neste módulo, você aprenderá a gerenciar redo log files. Você aprenderá a criar e excluir redo log files, visualizar informações sobre redo log files e configurar grupos de redo log files.\r\n\r\n\r\n Gerenciamento de archived log files Neste módulo, você aprenderá a gerenciar archived log files. Você aprenderá a criar e excluir archived log files, visualizar informações sobre archived log files e configurar o modo de arquivamento.\r\n\r\n\r\n Criação de objetos no banco de dados Oracle Neste módulo, você aprenderá a criar objetos no banco de dados Oracle. Isso inclui a criação de tabelas, índices, visualizações e sinônimos. Você também aprenderá a modificar e excluir objetos existentes.\r\n\r\n\r\n Administração de parâmetros no Oracle Neste módulo, você aprenderá a administrar parâmetros no Oracle. Isso inclui a configuração de parâmetros de inicialização e de sessão, a visualização de informações sobre parâmetros e a alteração de valores de parâmetros.\r\n\r\n\r\n Gerenciamento de estruturas de memória SGA e PGA Neste módulo, você aprenderá a gerenciar as estruturas de memória SGA e PGA. Isso inclui a configuração de tamanhos e valores de parâmetros relacionados à SGA e PGA, a visualização de informações sobre as estruturas de memória e a monitoração do desempenho relacionado à SGA e PGA.\r\n\r\n\r\n Backup e recovery Oracle com RMAN Neste módulo, você aprenderá a fazer backup e recuperação Oracle com RMAN. Isso inclui a configuração de políticas de backup, a criação de backups completos e incrementais, a recuperação de banco de dados, a validação de backups e a utilização de ferramentas de diagnóstico.\r\n\r\n\r\n SQL Language básico Neste módulo, você aprenderá o básico da SQL Language que um DBA precisa saber para não ficar no escuro quando as interfaces gráficas não estão disponíveis.\r\n\r\nO treinamento Administração de Banco de Dados Oracle inclui aulas com 12c, 19c e agora 21c no Oracle Linux 8.\r\n\r\nAlém disso, você receberá um treinamento do Oracle Enterprise Manager Cloud 13c\r\n\r\nCom a crescente demanda por soluções de gerenciamento de nuvem, muitas empresas estão procurando maneiras de melhorar seus processos de gerenciamento de dados e infraestrutura. Uma das melhores maneiras de fazer isso é aprender Oracle Enterprise Manager Cloud 13c, uma ferramenta de gerenciamento de nuvem altamente eficaz que ajuda as empresas a gerenciar seus aplicativos em nuvem com facilidade e eficiência. Neste artigo, vamos discutir por que você precisa aprender o Oracle Enterprise Manager Cloud 13c e como isso pode ajudá-lo a melhorar seus processos de gerenciamento de nuvem.\r\n\r\n\r\n Gerenciamento de nuvem simplificado\r\n\r\nCom o Oracle Enterprise Manager Cloud 13c, você pode simplificar o gerenciamento de sua infraestrutura em nuvem, o que é essencial para garantir a segurança e a confiabilidade de seus aplicativos em nuvem. Com esta ferramenta, você pode gerenciar todos os seus recursos de nuvem em um só lugar, o que significa que você pode facilmente monitorar, provisionar e gerenciar seus aplicativos em nuvem.\r\n\r\n\r\n Melhor desempenho e eficiência\r\n\r\nO Oracle Enterprise Manager Cloud 13c pode ajudá-lo a melhorar o desempenho e a eficiência de seus aplicativos em nuvem. Ele oferece recursos avançados de gerenciamento de desempenho, como diagnóstico e resolução de problemas, que podem ajudá-lo a identificar rapidamente e corrigir problemas em seus aplicativos em nuvem. Além disso, o Oracle Enterprise Manager Cloud 13c oferece recursos de automação que podem ajudá-lo a provisionar e configurar rapidamente seus recursos de nuvem, o que pode economizar tempo e dinheiro.\r\n\r\n\r\n Monitoramento de segurança aprimorado\r\n\r\nA segurança é uma preocupação importante para as empresas que usam aplicativos em nuvem. Com o Oracle Enterprise Manager Cloud 13c, você pode monitorar a segurança de seus aplicativos em nuvem de forma eficaz e eficiente. Ele oferece recursos avançados de segurança, como detecção de ameaças em tempo real, que podem ajudá-lo a identificar e resolver problemas de segurança antes que eles se tornem uma ameaça para seus aplicativos em nuvem.\r\n\r\n\r\n Integração com outras ferramentas Oracle\r\n\r\nO Oracle Enterprise Manager Cloud 13c é uma ferramenta altamente integrada que pode ser facilmente integrada com outras ferramentas Oracle. Isso significa que você pode facilmente integrar o Oracle Enterprise Manager Cloud 13c com outras ferramentas Oracle que você já está usando, o que pode ajudar a melhorar a eficiência de seus processos de gerenciamento de nuvem.\r\n\r\n\r\n Treinamento e certificação disponíveis\r\n\r\nAprender o Oracle Enterprise Manager Cloud 13c pode ajudá-lo a melhorar suas habilidades e aumentar suas chances de sucesso em sua carreira.\r\n\r\n\r\nConclusão\r\n\r\nAprender o Oracle Enterprise Manager Cloud 13c pode ser altamente benéfico para empresas que procuram melhorar seus processos de gerenciamento de nuvem. Com esta ferramenta, você pode simplificar o gerenciamento de sua infraestrutura em nuvem, melhorar o desempenho e a eficiência de seus aplicativos em nuvem, monitorar a segurança de forma eficaz, integrar com outras ferramentas Oracle e aumentar suas habilidades e oportunidades de carreira por meio de treinamento e certificação.\r\n\r\nAprender o Oracle Enterprise Manager Cloud 13c não é apenas útil para profissionais de TI, mas também para gerentes de negócios que desejam melhorar a eficiência de seus processos de gerenciamento de nuvem e a segurança de seus aplicativos em nuvem. Com a demanda crescente por soluções de gerenciamento de nuvem, aprender o Oracle Enterprise Manager Cloud 13c pode ser a chave para melhorar a eficiência e a produtividade de sua equipe e sua organização como um todo.\r\n\r\nAlém disso, o Oracle Enterprise Manager Cloud 13c é altamente flexível e pode ser personalizado para atender às necessidades específicas de sua empresa. Isso significa que você pode adaptar a ferramenta de gerenciamento de nuvem às suas necessidades específicas, o que pode ajudar a aumentar a eficiência de seus processos de gerenciamento de nuvem.\r\n\r\nEm resumo, aprender o Oracle Enterprise Manager Cloud 13c é uma excelente maneira de melhorar seus processos de gerenciamento de nuvem, aumentar a segurança de seus aplicativos em nuvem e melhorar a eficiência de sua equipe. Com os recursos avançados de gerenciamento de desempenho, segurança e automação, esta ferramenta de gerenciamento de nuvem pode ajudá-lo a atingir seus objetivos de negócios de maneira eficaz e eficiente. Então, se você está procurando melhorar seus processos de gerenciamento de nuvem, não deixe de aprender o Oracle Enterprise Manager Cloud 13c.', NULL, 0.00, NULL, 'free', 'uploads/course/1688737055-THivNX7LpH.jpg', 2, NULL, 'gD-TfPSRAtA', 0, 0, 'DBA-Oracle-Inclui-GRID-21c-Oracle-19c-Oracle-Linux-8-2023', 0, 1, 0.00, 1, 0, '2023-07-07 16:36:05', '2023-07-07 17:59:35', NULL),
(2, 'a0a58d1d-1336-4bc5-9ac3-492cf903e3a1', 2, 1, 1, 2, 8, 1, 2, 'informática', 'info', 'teste', NULL, 0.00, NULL, 'free', 'uploads/course/1688843630-JfAuChO1xL.jpg', NULL, NULL, NULL, 0, 0, 'informatica', 0, 3, 0.00, 1, NULL, '2023-07-08 22:12:43', '2023-07-15 13:22:45', NULL);
-- --------------------------------------------------------
--
-- Estrutura para tabela `course_instructor`
--
CREATE TABLE `course_instructor` (
`id` bigint(20) UNSIGNED NOT NULL,
`course_id` bigint(20) UNSIGNED NOT NULL,
`instructor_id` bigint(20) UNSIGNED NOT NULL,
`share` int(11) NOT NULL,
`status` tinyint(4) NOT NULL DEFAULT 0,
`deleted_at` timestamp NULL DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Despejando dados para a tabela `course_instructor`
--
INSERT INTO `course_instructor` (`id`, `course_id`, `instructor_id`, `share`, `status`, `deleted_at`, `created_at`, `updated_at`) VALUES
(1, 1, 2, 100, 1, NULL, '2023-07-07 16:39:37', '2023-07-07 16:39:37'),
(2, 2, 2, 100, 1, NULL, '2023-07-08 22:15:14', '2023-07-08 22:15:14');
-- --------------------------------------------------------
--
-- Estrutura para tabela `course_languages`
--
CREATE TABLE `course_languages` (
`id` bigint(20) UNSIGNED NOT NULL,
`uuid` char(36) COLLATE utf8mb4_unicode_ci NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Despejando dados para a tabela `course_languages`
--
INSERT INTO `course_languages` (`id`, `uuid`, `name`, `created_at`, `updated_at`) VALUES
(1, 'fec398b5-c9e5-45ee-94b4-1495ddbd75db', 'English', '2022-12-05 01:35:33', '2022-12-05 01:35:33'),
(2, '17e8849b-9587-4a90-ab45-0fba2e81c148', 'Bangla', '2022-12-05 01:35:33', '2022-12-05 01:35:33'),
(3, '2eaa0efb-99e0-419b-a51c-0ed08210f2b7', 'Hindi', '2022-12-05 01:35:33', '2022-12-05 01:35:33'),
(4, '2fffcb3e-bea5-43a6-840d-f3b2a435ce24', 'Spanish', '2022-12-05 01:35:33', '2022-12-05 01:35:33'),
(5, 'c22c508d-1ce1-4f26-98e5-ef4fc4fdb660', 'Arabic', '2022-12-05 01:35:33', '2022-12-05 01:35:33');
-- --------------------------------------------------------
--
-- Estrutura para tabela `course_lectures`
--
CREATE TABLE `course_lectures` (
`id` bigint(20) UNSIGNED NOT NULL,
`uuid` char(36) COLLATE utf8mb4_unicode_ci NOT NULL,
`course_id` bigint(20) NOT NULL,
`lesson_id` bigint(20) NOT NULL,
`title` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`lecture_type` tinyint(4) NOT NULL DEFAULT 2 COMMENT '1=free/show, 2=paid/lock',
`file_path` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`url_path` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`file_size` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`file_duration` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`file_duration_second` double DEFAULT NULL,
`type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'uploaded_video' COMMENT 'video, youtube, vimeo, text, image, pdf, slide_document, audio',
`vimeo_upload_type` tinyint(4) DEFAULT 1 COMMENT '1=video file upload, 2=vimeo uploaded video id',
`text` longtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`pdf` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`slide_document` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`audio` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`after_day` int(11) DEFAULT NULL,
`unlock_date` date DEFAULT NULL,
`pre_ids` text COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Despejando dados para a tabela `course_lectures`
--
INSERT INTO `course_lectures` (`id`, `uuid`, `course_id`, `lesson_id`, `title`, `lecture_type`, `file_path`, `url_path`, `file_size`, `file_duration`, `file_duration_second`, `type`, `vimeo_upload_type`, `text`, `image`, `pdf`, `slide_document`, `audio`, `after_day`, `unlock_date`, `pre_ids`, `created_at`, `updated_at`) VALUES
(1, 'cc2f9887-a813-4139-a19d-b2ba991a956d', 1, 1, 'Instalar e Configurar Oracle 19c com Oracle Linux 8', 1, NULL, 'PLJZRlbWeQvwI8nRzviH5ckXwYudrw2T56', NULL, '02:00', 120, 'youtube', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-07-07 16:39:27', '2023-07-07 16:39:27'),
(2, 'c551378c-56d5-417b-a203-0e37244052ad', 2, 2, 'aula1', 1, 'uploads/video/1688843693yhbExfw8FI.mp4', NULL, NULL, '00:54', 54, 'video', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-07-08 22:14:58', '2023-07-08 22:14:58'),
(3, '1ed7a749-cfe1-4b82-803b-ebeead9fb040', 2, 2, 'aula1', 1, 'uploads/video/1688843693rC9KpqMxRX.mp4', NULL, NULL, '00:54', 54, 'video', 1, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2023-07-08 22:14:58', '2023-07-08 22:14:58');
-- --------------------------------------------------------
--
-- Estrutura para tabela `course_lecture_views`
--
CREATE TABLE `course_lecture_views` (
`id` bigint(20) UNSIGNED NOT NULL,
`user_id` bigint(20) NOT NULL,
`course_id` bigint(20) NOT NULL,
`course_lecture_id` bigint(20) NOT NULL,
`enrollment_id` bigint(20) UNSIGNED DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Estrutura para tabela `course_lessons`
--
CREATE TABLE `course_lessons` (
`id` bigint(20) UNSIGNED NOT NULL,
`uuid` char(36) COLLATE utf8mb4_unicode_ci NOT NULL,
`course_id` bigint(20) NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`short_description` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Despejando dados para a tabela `course_lessons`
--
INSERT INTO `course_lessons` (`id`, `uuid`, `course_id`, `name`, `short_description`, `created_at`, `updated_at`) VALUES
(1, 'a6f904d6-9ada-4e31-ae86-d459d51d6ea0', 1, 'Instalar e Configurar Oracle 19c com Oracle Linux 8', NULL, '2023-07-07 16:37:59', '2023-07-07 16:37:59'),
(2, '554850b1-265e-4910-83f4-da5a5694d33f', 2, 'testee', NULL, '2023-07-08 22:14:07', '2023-07-08 22:14:07');
-- --------------------------------------------------------
--
-- Estrutura para tabela `course_resources`
--
CREATE TABLE `course_resources` (
`id` bigint(20) UNSIGNED NOT NULL,
`uuid` char(36) COLLATE utf8mb4_unicode_ci NOT NULL,
`course_id` bigint(20) UNSIGNED DEFAULT NULL,
`original_filename` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`file` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`size` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Estrutura para tabela `course_tags`
--
CREATE TABLE `course_tags` (
`id` bigint(20) UNSIGNED NOT NULL,
`course_id` bigint(20) NOT NULL,
`tag_id` bigint(20) NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Despejando dados para a tabela `course_tags`
--
INSERT INTO `course_tags` (`id`, `course_id`, `tag_id`, `created_at`, `updated_at`) VALUES
(1, 1, 2, NULL, NULL);
-- --------------------------------------------------------
--
-- Estrutura para tabela `course_upload_rules`
--
CREATE TABLE `course_upload_rules` (
`id` bigint(20) UNSIGNED NOT NULL,
`description` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Estrutura para tabela `currencies`
--
CREATE TABLE `currencies` (
`id` bigint(20) UNSIGNED NOT NULL,
`currency_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`symbol` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`currency_placement` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'before' COMMENT 'before, after',
`current_currency` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'no' COMMENT 'on, off',
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL