From 2a22c74bd9dce8eaa8d121e50c0e5cdac13f79a7 Mon Sep 17 00:00:00 2001
From: Raditss <raditya.naufal.a@gmail.com>
Date: Mon, 9 Oct 2023 13:34:38 +0700
Subject: [PATCH] update db

---
 db/toco.sql | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/db/toco.sql b/db/toco.sql
index 50a2fb9..f6b2153 100644
--- a/db/toco.sql
+++ b/db/toco.sql
@@ -100,15 +100,15 @@ CREATE TABLE videos (
   FOREIGN KEY (module_id) REFERENCES modules (module_id) ON DELETE CASCADE
 );
 
-INSERT INTO videos (video_name, video_url, module_id, video_desc, video_order) VALUES ('Count from 1 to 20', '/public/imgdata/video/NumberSong1-20.mp4', 1, 'Count from 1 to 20 blablablaballbalblablalbaba', 1);
-INSERT INTO videos (video_name, video_url, module_id, video_desc, video_order) VALUES ('Count  to 100', '/public/imgdata/video/LearnEnglishNumbers1-100.mp4', 1, 'Count to 100 blablablaballbalblablalbaba', 2);
-INSERT INTO videos (video_name, video_url, module_id, video_desc, video_order) VALUES ('Big numbers', '/public/imgdata/video/ReadingBigNumbersInEnglish.mp4', 1, 'Big numbers blablablaballbalblablalbaba', 3);
-INSERT INTO videos (video_name, video_url, module_id, video_desc, video_order) VALUES ('Learn pronouns', '/public/imgdata/video/LearnPronounsInEnglish.mp4', 2, 'Learn pronouns blablablaballbalblablalbaba', 1);
-INSERT INTO videos (video_name, video_url, module_id, video_desc, video_order) VALUES ('100 most popular names', '/public/imgdata/video/100MostPopularEnglishGirlsNames.mp4', 2, '100 most popular names blablablaballbalblablalbaba', 2);
-INSERT INTO videos (video_name, video_url, module_id, video_desc, video_order) VALUES ('Greet someone!', '/public/imgdata/video/LearnPronounsInEnglish.mp4', 2, 'Greet someone! blablablaballbalblablalbaba', 3);
-INSERT INTO videos (video_name, video_url, module_id, video_desc, video_order) VALUES ('10 Basic Phrases in Indonesian', '/public/imgdata/video/10 basic phrases for your first conversation.mp4', 16, 'Greet someone! blablablaballbalblablalbaba', 1);
-INSERT INTO videos (video_name, video_url, module_id, video_desc, video_order) VALUES ('Top 25 Indonesian Phrases', '/public/imgdata/video/Top 25 Indonesian Phrases.mp4', 16, 'Greet someone! blablablaballbalblablalbaba', 2);
-INSERT INTO videos (video_name, video_url, module_id, video_desc, video_order) VALUES ('Self Introduction in Indonesian', '/public/imgdata/video/How to introduce yourself in Indonesian.mp4', 17, 'Greet someone! blablablaballbalblablalbaba', 1);
+INSERT INTO videos (video_name, video_url, module_id, video_desc, video_order) VALUES ('Count from 1 to 20', '/public/imgdata/video/NumberSong1-20.mp4', 1, 'In this video, we will learn how to count from 1 to 20 in English. We will start with the basics and gradually move on to more complex numbers. By the end of this video, you will be able to count from 1 to 20 with ease.', 1);
+INSERT INTO videos (video_name, video_url, module_id, video_desc, video_order) VALUES ('Count  to 100', '/public/imgdata/video/LearnEnglishNumbers1-100.mp4', 1, 'In this video, we will learn how to count from 1 to 100 in English. We will start with the basics and gradually move on to more complex numbers. By the end of this video, you will be able to count from 1 to 100 with ease.', 2);
+INSERT INTO videos (video_name, video_url, module_id, video_desc, video_order) VALUES ('Big numbers', '/public/imgdata/video/ReadingBigNumbersInEnglish.mp4', 1, 'In this video, we will learn how to pronounce big numbers in English. We will start with the basics and gradually move on to more complex numbers. By the end of this video, you will be able to pronounce big numbers with ease.', 3);
+INSERT INTO videos (video_name, video_url, module_id, video_desc, video_order) VALUES ('Learn pronouns', '/public/imgdata/video/LearnPronounsInEnglish.mp4', 2, 'In this video, we will learn how to pronounce words in English. We will start with the basics and gradually move on to more complex words. By the end of this video, you will be able to pronounce words in English with ease.', 1);
+INSERT INTO videos (video_name, video_url, module_id, video_desc, video_order) VALUES ('100 most popular names', '/public/imgdata/video/100MostPopularEnglishGirlsNames.mp4', 2, 'In this video, we will learn about the 100 most popular names in English. We will start with the most popular names for girls, and gradually move on to less common names.', 2);
+INSERT INTO videos (video_name, video_url, module_id, video_desc, video_order) VALUES ('Greet someone!', '/public/imgdata/video/LearnPronounsInEnglish.mp4', 2, 'In this video, we will learn how to greet someone in English. We will start with the basics and gradually move on to more complex greetings. By the end of this video, you will be able to greet someone in English with ease.', 3);
+INSERT INTO videos (video_name, video_url, module_id, video_desc, video_order) VALUES ('10 Basic Phrases in Indonesian', '/public/imgdata/video/10 basic phrases for your first conversation.mp4', 16, 'In this video, we will learn 10 basic phrases in Indonesian that will help you communicate with locals during your travels. We will start with the most common phrases, such as "hello" and "thank you", and gradually move on to more complex phrases.', 1);
+INSERT INTO videos (video_name, video_url, module_id, video_desc, video_order) VALUES ('Top 25 Indonesian Phrases', '/public/imgdata/video/Top 25 Indonesian Phrases.mp4', 16, 'In this video, we will learn 25 basic phrases in Indonesian that will help you communicate with locals during your travels. We will start with the most common phrases, such as "hello" and "thank you", and gradually move on to more complex phrases.', 2);
+INSERT INTO videos (video_name, video_url, module_id, video_desc, video_order) VALUES ('Self Introduction in Indonesian', '/public/imgdata/video/How to introduce yourself in Indonesian.mp4', 17, ' In this video, we will learn how to introduce yourself in Indonesian. We will start with the basics and gradually move on to more complex phrases. By the end of this video, you will be able to introduce yourself in Indonesian with ease.', 1);
 
 DROP TABLE IF EXISTS videos_result;
 CREATE TABLE videos_result (
-- 
GitLab