-- phpMyAdmin SQL Dump
-- version 5.2.1
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Mar 20, 2026 at 04:13 PM
-- Server version: 10.4.32-MariaDB
-- PHP Version: 8.2.12

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 */;

--
-- Database: `lms`
--

-- --------------------------------------------------------

--
-- Table structure for table `lms_admin`
--

CREATE TABLE `lms_admin` (
  `id` int(11) NOT NULL,
  `email_id` varchar(200) NOT NULL,
  `password` varchar(200) NOT NULL,
  `status` varchar(200) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `lms_cart_course`
--

CREATE TABLE `lms_cart_course` (
  `id` int(11) NOT NULL,
  `cart_id` varchar(200) DEFAULT NULL,
  `user_id` varchar(200) DEFAULT NULL,
  `user_type` varchar(200) DEFAULT NULL,
  `cart_item` varchar(200) DEFAULT NULL,
  `amount` int(100) DEFAULT NULL,
  `payment_status` varchar(200) DEFAULT NULL,
  `active_status` varchar(200) DEFAULT NULL,
  `order_status` varchar(200) NOT NULL,
  `card_type` varchar(200) DEFAULT NULL,
  `created_on` datetime DEFAULT NULL,
  `created_by` varchar(200) DEFAULT NULL,
  `modified_on` datetime DEFAULT NULL,
  `modified_by` varchar(200) DEFAULT NULL,
  `status` int(11) NOT NULL DEFAULT 1
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `lms_cart_list`
--

CREATE TABLE `lms_cart_list` (
  `id` int(11) NOT NULL,
  `cart_id` varchar(200) DEFAULT NULL,
  `parent_id` varchar(200) DEFAULT NULL,
  `child_id` varchar(200) DEFAULT NULL,
  `purchage_course_id` varchar(200) DEFAULT NULL,
  `amount` varchar(200) DEFAULT NULL,
  `p_date` varchar(200) DEFAULT NULL,
  `created_by` varchar(200) DEFAULT NULL,
  `created_on` datetime DEFAULT NULL,
  `modified_by` varchar(200) DEFAULT NULL,
  `modified_on` datetime DEFAULT NULL,
  `status` tinyint(1) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `lms_category`
--

CREATE TABLE `lms_category` (
  `id` int(11) NOT NULL,
  `title` varchar(200) DEFAULT NULL,
  `image` varchar(200) DEFAULT NULL,
  `created_on` datetime DEFAULT NULL,
  `created_by` varchar(200) DEFAULT NULL,
  `modified_on` datetime DEFAULT NULL,
  `modified_by` varchar(200) DEFAULT NULL,
  `status` tinyint(1) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `lms_child_details`
--

CREATE TABLE `lms_child_details` (
  `id` int(11) NOT NULL,
  `parent_id` varchar(200) DEFAULT NULL,
  `child_name` varchar(200) DEFAULT NULL,
  `child_dob` varchar(200) DEFAULT NULL,
  `child_age` varchar(200) DEFAULT NULL,
  `grade` varchar(200) DEFAULT NULL,
  `username` varchar(200) DEFAULT NULL,
  `password` varchar(200) DEFAULT NULL,
  `school` varchar(200) DEFAULT NULL,
  `created_on` datetime DEFAULT NULL,
  `created_by` varchar(200) DEFAULT NULL,
  `modified_on` datetime DEFAULT NULL,
  `modified_by` varchar(200) DEFAULT NULL,
  `status` int(1) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `lms_course_master`
--

CREATE TABLE `lms_course_master` (
  `id` int(11) NOT NULL,
  `cat_id` varchar(200) DEFAULT NULL,
  `title` varchar(200) DEFAULT NULL,
  `course_type` varchar(200) DEFAULT NULL,
  `image` varchar(200) DEFAULT NULL,
  `created_by` varchar(200) DEFAULT NULL,
  `created_on` datetime DEFAULT NULL,
  `modified_by` varchar(200) DEFAULT NULL,
  `modified_on` datetime DEFAULT NULL,
  `status` tinyint(1) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `lms_grade_master`
--

CREATE TABLE `lms_grade_master` (
  `id` int(11) NOT NULL,
  `age` varchar(200) DEFAULT NULL,
  `grade` varchar(200) DEFAULT NULL,
  `created_on` datetime DEFAULT NULL,
  `created_by` varchar(200) DEFAULT NULL,
  `modified_on` datetime DEFAULT NULL,
  `modified_by` varchar(200) DEFAULT NULL,
  `status` tinyint(1) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `lms_instructor_courses`
--

CREATE TABLE `lms_instructor_courses` (
  `id` int(11) NOT NULL,
  `category_id` varchar(200) DEFAULT NULL,
  `category_title` varchar(200) DEFAULT NULL,
  `course_id` varchar(200) DEFAULT NULL,
  `course_title` varchar(200) DEFAULT NULL,
  `course_type` varchar(200) DEFAULT NULL,
  `course_img` varchar(200) DEFAULT NULL,
  `course_video` varchar(200) DEFAULT NULL,
  `course_price` varchar(200) DEFAULT NULL,
  `course_discount` varchar(200) DEFAULT NULL,
  `course_level` varchar(200) DEFAULT NULL,
  `start_date` date DEFAULT NULL,
  `language` varchar(200) DEFAULT NULL,
  `no_of_class` varchar(200) DEFAULT NULL,
  `duration` varchar(200) DEFAULT NULL,
  `course_overview` text DEFAULT NULL,
  `details` text DEFAULT NULL,
  `cv` text DEFAULT NULL,
  `additional_info` text DEFAULT NULL,
  `grade` varchar(200) DEFAULT NULL,
  `created_on` datetime DEFAULT NULL,
  `created_by` varchar(200) DEFAULT NULL,
  `modified_on` datetime DEFAULT NULL,
  `modified_by` varchar(200) DEFAULT NULL,
  `status` int(11) NOT NULL DEFAULT 1
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `lms_instructor_courses_bk`
--

CREATE TABLE `lms_instructor_courses_bk` (
  `id` int(11) NOT NULL,
  `category_id` varchar(200) DEFAULT NULL,
  `category_title` varchar(200) DEFAULT NULL,
  `course_id` varchar(200) DEFAULT NULL,
  `course_title` varchar(200) DEFAULT NULL,
  `course_type` varchar(200) DEFAULT NULL,
  `course_img` varchar(200) DEFAULT NULL,
  `course_video` varchar(200) DEFAULT NULL,
  `course_price` varchar(200) DEFAULT NULL,
  `course_level` varchar(200) DEFAULT NULL,
  `start_date` date DEFAULT NULL,
  `language` varchar(200) DEFAULT NULL,
  `no_of_class` varchar(200) DEFAULT NULL,
  `duration` varchar(200) DEFAULT NULL,
  `course_overview` text DEFAULT NULL,
  `details` text DEFAULT NULL,
  `cv` text DEFAULT NULL,
  `additional_info` text DEFAULT NULL,
  `grade` varchar(200) DEFAULT NULL,
  `created_on` datetime DEFAULT NULL,
  `created_by` varchar(200) DEFAULT NULL,
  `modified_on` datetime DEFAULT NULL,
  `modified_by` varchar(200) DEFAULT NULL,
  `status` int(11) NOT NULL DEFAULT 1
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `lms_instructor_couses`
--

CREATE TABLE `lms_instructor_couses` (
  `id` int(11) NOT NULL,
  `course_id` varchar(200) DEFAULT NULL,
  `title` text DEFAULT NULL,
  `short_discription` longtext DEFAULT NULL,
  `no_classes` varchar(200) DEFAULT NULL,
  `duration` varchar(200) DEFAULT NULL,
  `created_on` datetime DEFAULT NULL,
  `created_by` varchar(200) DEFAULT NULL,
  `modified_on` datetime DEFAULT NULL,
  `modified_by` varchar(200) DEFAULT NULL,
  `status` tinyint(1) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `lms_instructor_documents`
--

CREATE TABLE `lms_instructor_documents` (
  `id` int(11) NOT NULL,
  `instructor_id` varchar(200) DEFAULT NULL,
  `image` varchar(200) DEFAULT NULL,
  `id_proof` varchar(200) DEFAULT NULL,
  `grad_proof` varchar(200) DEFAULT NULL,
  `exp_cert` varchar(200) DEFAULT NULL,
  `created_on` datetime DEFAULT NULL,
  `created_by` varchar(200) DEFAULT NULL,
  `modified_on` datetime DEFAULT NULL,
  `modified_by` varchar(200) DEFAULT NULL,
  `status` int(11) NOT NULL DEFAULT 1
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `lms_instructor_lessons`
--

CREATE TABLE `lms_instructor_lessons` (
  `id` int(11) NOT NULL,
  `course_id` varchar(200) DEFAULT NULL,
  `course_title` varchar(200) DEFAULT NULL,
  `module_id` varchar(200) DEFAULT NULL,
  `module_title` varchar(200) DEFAULT NULL,
  `lesson_title` varchar(200) DEFAULT NULL,
  `lesson_type` varchar(200) DEFAULT NULL,
  `video_url` varchar(200) DEFAULT NULL,
  `video_upload` varchar(200) DEFAULT NULL,
  `material_url` varchar(200) DEFAULT NULL,
  `material_upload` varchar(200) DEFAULT NULL,
  `assignment_upload` varchar(200) DEFAULT NULL,
  `lesson_url` varchar(200) DEFAULT NULL,
  `lesson_content` text DEFAULT NULL,
  `assign_instruction` text DEFAULT NULL,
  `created_on` datetime DEFAULT NULL,
  `created_by` varchar(200) DEFAULT NULL,
  `modified_on` datetime DEFAULT NULL,
  `modified_by` varchar(200) DEFAULT NULL,
  `status` int(11) NOT NULL DEFAULT 1
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `lms_instructor_modules`
--

CREATE TABLE `lms_instructor_modules` (
  `id` int(11) NOT NULL,
  `course_id` varchar(200) DEFAULT NULL,
  `course_title` varchar(200) DEFAULT NULL,
  `module_title` varchar(200) DEFAULT NULL,
  `no_of_lessons` varchar(200) DEFAULT NULL,
  `created_by` varchar(200) DEFAULT NULL,
  `created_on` datetime DEFAULT NULL,
  `modified_by` varchar(200) DEFAULT NULL,
  `modified_on` datetime DEFAULT NULL,
  `status` int(11) NOT NULL DEFAULT 1
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `lms_instructor_register`
--

CREATE TABLE `lms_instructor_register` (
  `id` int(11) NOT NULL,
  `instructor_name` varchar(200) DEFAULT NULL,
  `email_id` varchar(200) DEFAULT NULL,
  `password` varchar(200) DEFAULT NULL,
  `instructor_mobile` varchar(200) DEFAULT NULL,
  `instructor_education` varchar(200) DEFAULT NULL,
  `instructor_resume` varchar(200) DEFAULT NULL,
  `instructor_linkedIn` varchar(200) DEFAULT NULL,
  `instructor_address` varchar(200) DEFAULT NULL,
  `university_name` varchar(200) DEFAULT NULL,
  `university_major` varchar(200) DEFAULT NULL,
  `teaching_exp` varchar(200) DEFAULT NULL,
  `created_on` datetime DEFAULT NULL,
  `created_by` varchar(200) DEFAULT NULL,
  `modified_by` varchar(200) DEFAULT NULL,
  `modified_on` datetime DEFAULT NULL,
  `status` tinyint(1) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

-- --------------------------------------------------------

--
-- Table structure for table `lms_kid_register`
--

CREATE TABLE `lms_kid_register` (
  `id` int(11) NOT NULL,
  `parent_name` varchar(200) DEFAULT NULL,
  `parent_email` varchar(200) DEFAULT NULL,
  `password` varchar(200) DEFAULT NULL,
  `parent_mobile` varchar(200) DEFAULT NULL,
  `mode_class` varchar(200) DEFAULT NULL,
  `created_on` datetime DEFAULT NULL,
  `created_by` varchar(200) DEFAULT NULL,
  `modified_on` datetime DEFAULT NULL,
  `modified_by` varchar(200) DEFAULT NULL,
  `status` tinyint(1) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Indexes for dumped tables
--

--
-- Indexes for table `lms_admin`
--
ALTER TABLE `lms_admin`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `lms_cart_course`
--
ALTER TABLE `lms_cart_course`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `lms_cart_list`
--
ALTER TABLE `lms_cart_list`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `lms_category`
--
ALTER TABLE `lms_category`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `lms_child_details`
--
ALTER TABLE `lms_child_details`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `lms_course_master`
--
ALTER TABLE `lms_course_master`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `lms_grade_master`
--
ALTER TABLE `lms_grade_master`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `lms_instructor_courses`
--
ALTER TABLE `lms_instructor_courses`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `lms_instructor_courses_bk`
--
ALTER TABLE `lms_instructor_courses_bk`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `lms_instructor_couses`
--
ALTER TABLE `lms_instructor_couses`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `lms_instructor_documents`
--
ALTER TABLE `lms_instructor_documents`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `lms_instructor_lessons`
--
ALTER TABLE `lms_instructor_lessons`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `lms_instructor_modules`
--
ALTER TABLE `lms_instructor_modules`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `lms_instructor_register`
--
ALTER TABLE `lms_instructor_register`
  ADD PRIMARY KEY (`id`);

--
-- Indexes for table `lms_kid_register`
--
ALTER TABLE `lms_kid_register`
  ADD PRIMARY KEY (`id`);

--
-- AUTO_INCREMENT for dumped tables
--

--
-- AUTO_INCREMENT for table `lms_admin`
--
ALTER TABLE `lms_admin`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `lms_cart_course`
--
ALTER TABLE `lms_cart_course`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `lms_cart_list`
--
ALTER TABLE `lms_cart_list`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `lms_category`
--
ALTER TABLE `lms_category`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `lms_child_details`
--
ALTER TABLE `lms_child_details`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `lms_course_master`
--
ALTER TABLE `lms_course_master`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `lms_grade_master`
--
ALTER TABLE `lms_grade_master`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `lms_instructor_courses`
--
ALTER TABLE `lms_instructor_courses`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `lms_instructor_courses_bk`
--
ALTER TABLE `lms_instructor_courses_bk`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `lms_instructor_couses`
--
ALTER TABLE `lms_instructor_couses`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `lms_instructor_documents`
--
ALTER TABLE `lms_instructor_documents`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `lms_instructor_lessons`
--
ALTER TABLE `lms_instructor_lessons`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `lms_instructor_modules`
--
ALTER TABLE `lms_instructor_modules`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `lms_instructor_register`
--
ALTER TABLE `lms_instructor_register`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `lms_kid_register`
--
ALTER TABLE `lms_kid_register`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
COMMIT;

/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
