-- phpMyAdmin SQL Dump
-- version 5.2.1
-- https://www.phpmyadmin.net/
--
-- Host: localhost:3306
-- Generation Time: Oct 08, 2024 at 01:29 PM
-- Server version: 10.6.19-MariaDB-ubu2004
-- PHP Version: 8.3.11

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: `mimeld_mxul`
--

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

--
-- Table structure for table `academic_calendars`
--

CREATE TABLE `academic_calendars` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `date` date NOT NULL,
  `title` varchar(512) NOT NULL,
  `description` varchar(1024) DEFAULT NULL,
  `session_year_id` bigint(20) UNSIGNED NOT NULL,
  `school_id` bigint(20) UNSIGNED 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;

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

--
-- Table structure for table `addons`
--

CREATE TABLE `addons` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `price` double(8,4) NOT NULL COMMENT 'Daily price',
  `feature_id` bigint(20) UNSIGNED NOT NULL,
  `status` tinyint(4) NOT NULL DEFAULT 0 COMMENT '0 => Inactive, 1 => Active',
  `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;

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

--
-- Table structure for table `addon_subscriptions`
--

CREATE TABLE `addon_subscriptions` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `school_id` bigint(20) UNSIGNED NOT NULL,
  `feature_id` bigint(20) UNSIGNED NOT NULL,
  `price` double(8,4) NOT NULL,
  `start_date` date NOT NULL,
  `end_date` date NOT NULL,
  `status` tinyint(4) NOT NULL DEFAULT 1 COMMENT '0 => Discontinue next billing, 1 => Continue',
  `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;

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

--
-- Table structure for table `announcements`
--

CREATE TABLE `announcements` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `title` varchar(128) NOT NULL,
  `description` varchar(1024) DEFAULT NULL,
  `session_year_id` bigint(20) UNSIGNED NOT NULL,
  `school_id` bigint(20) UNSIGNED NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `announcement_classes`
--

CREATE TABLE `announcement_classes` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `announcement_id` bigint(20) UNSIGNED DEFAULT NULL,
  `class_section_id` bigint(20) UNSIGNED DEFAULT NULL,
  `class_subject_id` bigint(20) UNSIGNED DEFAULT NULL,
  `school_id` bigint(20) UNSIGNED NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `assignments`
--

CREATE TABLE `assignments` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `class_section_id` bigint(20) UNSIGNED NOT NULL,
  `class_subject_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(128) NOT NULL,
  `instructions` varchar(1024) DEFAULT NULL,
  `due_date` datetime NOT NULL,
  `points` int(11) DEFAULT NULL,
  `resubmission` tinyint(1) NOT NULL DEFAULT 0,
  `extra_days_for_resubmission` int(11) DEFAULT NULL,
  `session_year_id` bigint(20) UNSIGNED NOT NULL,
  `school_id` bigint(20) UNSIGNED NOT NULL,
  `created_by` bigint(20) UNSIGNED NOT NULL COMMENT 'teacher_user_id',
  `edited_by` bigint(20) UNSIGNED DEFAULT NULL COMMENT 'teacher_user_id',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `assignment_submissions`
--

CREATE TABLE `assignment_submissions` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `assignment_id` bigint(20) UNSIGNED NOT NULL,
  `student_id` bigint(20) UNSIGNED NOT NULL,
  `session_year_id` bigint(20) UNSIGNED NOT NULL,
  `feedback` text DEFAULT NULL,
  `points` int(11) DEFAULT NULL,
  `status` tinyint(4) NOT NULL DEFAULT 0 COMMENT '0 = Pending/In Review , 1 = Accepted , 2 = Rejected , 3 = Resubmitted',
  `school_id` bigint(20) UNSIGNED NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `attendances`
--

CREATE TABLE `attendances` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `class_section_id` bigint(20) UNSIGNED NOT NULL,
  `student_id` bigint(20) UNSIGNED NOT NULL COMMENT 'user_id',
  `session_year_id` bigint(20) UNSIGNED NOT NULL,
  `type` tinyint(4) NOT NULL COMMENT '0=Absent, 1=Present',
  `date` date NOT NULL,
  `remark` varchar(512) NOT NULL,
  `school_id` bigint(20) UNSIGNED NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `categories`
--

CREATE TABLE `categories` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(512) NOT NULL,
  `school_id` bigint(20) UNSIGNED NOT NULL,
  `status` tinyint(4) NOT NULL DEFAULT 1,
  `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;

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

--
-- Table structure for table `classes`
--

CREATE TABLE `classes` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(512) NOT NULL,
  `include_semesters` tinyint(4) NOT NULL DEFAULT 0 COMMENT '0 - no 1 - yes',
  `medium_id` bigint(20) UNSIGNED NOT NULL,
  `shift_id` bigint(20) UNSIGNED DEFAULT NULL,
  `stream_id` bigint(20) UNSIGNED DEFAULT NULL,
  `school_id` bigint(20) UNSIGNED 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;

--
-- Dumping data for table `classes`
--

INSERT INTO `classes` (`id`, `name`, `include_semesters`, `medium_id`, `shift_id`, `stream_id`, `school_id`, `created_at`, `updated_at`, `deleted_at`) VALUES
(1, 'class 1', 0, 1, 3, NULL, 1, '2024-03-06 13:49:24', '2024-03-06 13:49:24', NULL),
(2, 'class 2', 0, 1, 2, NULL, 1, '2024-03-06 13:49:41', '2024-03-06 13:49:41', NULL),
(3, 'class 1', 0, 3, 4, 1, 5, '2024-03-07 11:19:29', '2024-03-07 11:19:29', NULL),
(4, '2 nd', 0, 6, 5, 2, 2, '2024-03-07 11:49:20', '2024-03-07 11:49:20', NULL),
(5, 'class 2', 0, 3, 4, 4, 5, '2024-03-07 11:49:25', '2024-03-07 11:49:25', NULL);

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

--
-- Table structure for table `class_sections`
--

CREATE TABLE `class_sections` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `class_id` bigint(20) UNSIGNED NOT NULL,
  `section_id` bigint(20) UNSIGNED NOT NULL,
  `medium_id` bigint(20) UNSIGNED NOT NULL,
  `school_id` bigint(20) UNSIGNED 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;

--
-- Dumping data for table `class_sections`
--

INSERT INTO `class_sections` (`id`, `class_id`, `section_id`, `medium_id`, `school_id`, `created_at`, `updated_at`, `deleted_at`) VALUES
(1, 1, 1, 1, 1, '2024-03-06 13:49:24', '2024-03-06 13:49:24', NULL),
(2, 2, 3, 1, 1, '2024-03-06 13:49:41', '2024-03-06 13:49:41', NULL),
(3, 3, 5, 3, 5, '2024-03-07 11:19:29', '2024-03-07 11:19:29', NULL),
(4, 4, 8, 6, 2, '2024-03-07 11:49:20', '2024-03-07 11:49:20', NULL),
(5, 5, 6, 3, 5, '2024-03-07 11:49:25', '2024-03-07 11:49:25', NULL);

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

--
-- Table structure for table `class_subjects`
--

CREATE TABLE `class_subjects` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `class_id` bigint(20) UNSIGNED NOT NULL,
  `subject_id` bigint(20) UNSIGNED NOT NULL,
  `type` varchar(32) NOT NULL COMMENT 'Compulsory / Elective',
  `elective_subject_group_id` bigint(20) UNSIGNED DEFAULT NULL COMMENT 'if type=Elective',
  `semester_id` bigint(20) UNSIGNED DEFAULT NULL,
  `virtual_semester_id` int(11) GENERATED ALWAYS AS (case when `semester_id` is not null then `semester_id` else 0 end) VIRTUAL,
  `school_id` bigint(20) UNSIGNED NOT NULL,
  `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;

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

--
-- Table structure for table `class_teachers`
--

CREATE TABLE `class_teachers` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `class_section_id` bigint(20) UNSIGNED NOT NULL,
  `teacher_id` bigint(20) UNSIGNED NOT NULL COMMENT 'user_id',
  `school_id` bigint(20) UNSIGNED NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `compulsory_fees`
--

CREATE TABLE `compulsory_fees` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `student_id` bigint(20) UNSIGNED NOT NULL COMMENT 'user_id',
  `payment_transaction_id` bigint(20) UNSIGNED DEFAULT NULL,
  `type` enum('Full Payment','Installment Payment') NOT NULL,
  `installment_id` bigint(20) UNSIGNED DEFAULT NULL,
  `mode` enum('Cash','Cheque','Online') NOT NULL,
  `cheque_no` varchar(191) DEFAULT NULL,
  `amount` double(8,2) NOT NULL,
  `due_charges` double(8,2) DEFAULT NULL,
  `fees_paid_id` bigint(20) UNSIGNED DEFAULT NULL,
  `status` enum('Success','Pending','Failed') NOT NULL,
  `date` date NOT NULL,
  `school_id` bigint(20) UNSIGNED 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;

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

--
-- Table structure for table `elective_subject_groups`
--

CREATE TABLE `elective_subject_groups` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `total_subjects` int(11) NOT NULL,
  `total_selectable_subjects` int(11) NOT NULL,
  `class_id` bigint(20) UNSIGNED NOT NULL,
  `semester_id` bigint(20) UNSIGNED DEFAULT NULL,
  `school_id` bigint(20) UNSIGNED 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;

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

--
-- Table structure for table `exams`
--

CREATE TABLE `exams` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(128) NOT NULL,
  `description` varchar(1024) DEFAULT NULL,
  `class_id` bigint(20) UNSIGNED NOT NULL,
  `session_year_id` bigint(20) UNSIGNED NOT NULL,
  `start_date` date DEFAULT NULL,
  `end_date` date DEFAULT NULL,
  `publish` tinyint(4) NOT NULL DEFAULT 0,
  `school_id` bigint(20) UNSIGNED 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;

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

--
-- Table structure for table `exam_marks`
--

CREATE TABLE `exam_marks` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `exam_timetable_id` bigint(20) UNSIGNED NOT NULL,
  `student_id` bigint(20) UNSIGNED NOT NULL COMMENT 'user_id',
  `class_subject_id` bigint(20) UNSIGNED NOT NULL,
  `obtained_marks` double(8,2) NOT NULL,
  `teacher_review` varchar(1024) DEFAULT NULL,
  `passing_status` tinyint(1) NOT NULL COMMENT '1=Pass, 0=Fail',
  `session_year_id` bigint(20) UNSIGNED NOT NULL,
  `grade` tinytext DEFAULT NULL,
  `school_id` bigint(20) UNSIGNED 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;

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

--
-- Table structure for table `exam_results`
--

CREATE TABLE `exam_results` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `exam_id` bigint(20) UNSIGNED NOT NULL,
  `class_section_id` bigint(20) UNSIGNED NOT NULL,
  `student_id` bigint(20) UNSIGNED NOT NULL COMMENT 'user_id',
  `total_marks` int(11) NOT NULL,
  `obtained_marks` double(8,2) NOT NULL,
  `percentage` double(8,2) NOT NULL,
  `grade` tinytext NOT NULL,
  `session_year_id` bigint(20) UNSIGNED NOT NULL,
  `school_id` bigint(20) UNSIGNED NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `exam_timetables`
--

CREATE TABLE `exam_timetables` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `exam_id` bigint(20) UNSIGNED NOT NULL,
  `class_subject_id` bigint(20) UNSIGNED NOT NULL,
  `total_marks` double(8,2) NOT NULL,
  `passing_marks` double(8,2) NOT NULL,
  `date` date NOT NULL,
  `start_time` time NOT NULL,
  `end_time` time NOT NULL,
  `session_year_id` bigint(20) UNSIGNED NOT NULL,
  `school_id` bigint(20) UNSIGNED NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `expenses`
--

CREATE TABLE `expenses` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `category_id` bigint(20) UNSIGNED DEFAULT NULL,
  `ref_no` varchar(191) DEFAULT NULL,
  `staff_id` bigint(20) UNSIGNED DEFAULT NULL,
  `basic_salary` bigint(20) NOT NULL DEFAULT 0,
  `paid_leaves` double(8,2) NOT NULL DEFAULT 0.00,
  `month` bigint(20) DEFAULT NULL,
  `year` int(11) DEFAULT NULL,
  `title` varchar(512) NOT NULL,
  `description` varchar(191) DEFAULT NULL,
  `amount` double(8,2) NOT NULL,
  `date` date NOT NULL,
  `school_id` bigint(20) UNSIGNED NOT NULL,
  `session_year_id` bigint(20) UNSIGNED NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `expense_categories`
--

CREATE TABLE `expense_categories` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `description` varchar(191) DEFAULT NULL,
  `school_id` bigint(20) UNSIGNED 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;

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

--
-- Table structure for table `extra_student_datas`
--

CREATE TABLE `extra_student_datas` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `student_id` bigint(20) UNSIGNED NOT NULL COMMENT 'user_id',
  `form_field_id` bigint(20) UNSIGNED NOT NULL,
  `data` text DEFAULT NULL,
  `school_id` bigint(20) UNSIGNED 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;

--
-- Dumping data for table `extra_student_datas`
--

INSERT INTO `extra_student_datas` (`id`, `student_id`, `form_field_id`, `data`, `school_id`, `created_at`, `updated_at`, `deleted_at`) VALUES
(1, 12, 1, '1', 1, '2024-03-07 08:40:01', '2024-03-07 08:40:01', NULL),
(2, 30, 2, '123', 5, '2024-03-07 16:16:38', '2024-03-07 16:16:38', NULL),
(3, 31, 1, '1', 1, '2024-03-08 00:13:28', '2024-03-08 00:13:28', NULL),
(4, 32, 1, '617', 1, '2024-03-09 10:12:43', '2024-03-09 10:12:43', NULL),
(5, 33, 1, '694', 1, '2024-03-09 10:17:27', '2024-03-09 10:17:27', NULL),
(6, 35, 1, '1', 1, '2024-03-09 10:21:28', '2024-03-09 10:21:28', NULL),
(7, 36, 1, '423', 1, '2024-03-09 10:23:25', '2024-03-09 10:23:25', NULL),
(8, 39, 1, '12345', 1, '2024-03-09 10:24:43', '2024-03-09 10:24:43', NULL),
(9, 42, 1, '1', 1, '2024-03-09 10:33:55', '2024-03-09 13:09:54', NULL),
(10, 45, 1, '0', 1, '2024-03-09 10:37:49', '2024-03-09 10:37:49', NULL),
(11, 46, 1, '949', 1, '2024-03-09 10:40:06', '2024-03-09 10:40:06', NULL),
(12, 47, 1, '891', 1, '2024-03-09 10:55:41', '2024-03-09 10:55:41', NULL),
(13, 48, 1, '58300', 1, '2024-03-09 12:38:07', '2024-03-09 12:38:07', NULL),
(14, 49, 1, '883000', 1, '2024-03-09 12:43:31', '2024-03-09 12:43:31', NULL),
(15, 51, 1, '124', 1, '2024-03-09 13:18:19', '2024-03-09 13:18:19', NULL),
(16, 52, 1, '1', 1, '2024-03-11 10:31:28', '2024-03-11 10:36:07', NULL);

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

--
-- Table structure for table `failed_jobs`
--

CREATE TABLE `failed_jobs` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `uuid` varchar(191) NOT NULL,
  `connection` text NOT NULL,
  `queue` text NOT NULL,
  `payload` longtext NOT NULL,
  `exception` longtext NOT NULL,
  `failed_at` timestamp NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `faqs`
--

CREATE TABLE `faqs` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `title` varchar(191) NOT NULL,
  `description` text NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `faqs`
--

INSERT INTO `faqs` (`id`, `title`, `description`, `created_at`, `updated_at`) VALUES
(1, 'What are the school\'s operating hours?', 'This question helps parents, students, and visitors understand the regular timing of school operations, including start and end times for classes, office hours, and any variations during holidays or special events.', '2024-03-05 11:57:37', '2024-03-05 11:57:37'),
(2, 'What is the procedure for enrolling a child at the school?', 'This FAQ should outline the steps and necessary documentation required for enrolling a student, including registration forms, proof of residence, health records, and any other pertinent information.', '2024-03-05 11:57:58', '2024-03-05 11:57:58'),
(3, 'What extracurricular activities are available for students?', 'Providing information about extracurricular activities such as sports, clubs, arts programs, and academic competitions helps students and parents understand the breadth of opportunities available beyond the regular curriculum.', '2024-03-05 11:58:23', '2024-03-05 11:58:23'),
(4, 'How can parents/guardians stay informed about their child\'s progress?', 'This question addresses communication channels between the school and parents/guardians, including access to online grading systems, parent-teacher conferences, newsletters, and other platforms for sharing academic and behavioral updates.', '2024-03-05 11:58:45', '2024-03-05 11:58:45'),
(5, 'What are the school\'s policies regarding safety and security?', 'This FAQ should address the school\'s protocols for ensuring the safety and security of students and staff, including emergency procedures, visitor policies, transportation guidelines, and any other relevant measures in place to promote a secure learning environment.', '2024-03-05 11:59:04', '2024-03-05 11:59:04');

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

--
-- Table structure for table `features`
--

CREATE TABLE `features` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `is_default` tinyint(4) NOT NULL DEFAULT 0 COMMENT '0 => No, 1 => Yes',
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `features`
--

INSERT INTO `features` (`id`, `name`, `is_default`, `created_at`, `updated_at`) VALUES
(1, 'Student Management', 1, '2023-11-25 07:38:41', '2023-11-25 07:38:41'),
(2, 'Academics Management', 1, '2023-11-25 07:38:41', '2023-11-25 07:38:41'),
(3, 'Slider Management', 0, '2023-11-25 07:38:41', '2023-11-25 07:38:41'),
(4, 'Teacher Management', 1, '2023-11-25 07:38:41', '2023-11-25 07:38:41'),
(5, 'Session Year Management', 1, '2023-11-25 07:38:41', '2023-11-25 07:38:41'),
(6, 'Holiday Management', 0, '2023-11-25 07:38:41', '2023-11-25 07:38:41'),
(7, 'Timetable Management', 0, '2023-11-25 07:38:41', '2023-11-25 07:38:41'),
(8, 'Attendance Management', 0, '2023-11-25 07:38:41', '2023-11-25 07:38:41'),
(9, 'Exam Management', 0, '2023-11-25 07:38:41', '2023-11-25 07:38:41'),
(10, 'Lesson Management', 0, '2023-11-25 07:38:41', '2023-11-25 07:38:41'),
(11, 'Assignment Management', 0, '2023-11-25 07:38:41', '2023-11-25 07:38:41'),
(12, 'Announcement Management', 0, '2023-11-25 07:38:41', '2023-11-25 07:38:41'),
(13, 'Staff Management', 0, '2023-11-25 07:38:41', '2023-11-25 07:38:41'),
(14, 'Expense Management', 0, '2023-11-25 07:38:41', '2023-11-25 07:38:41'),
(15, 'Staff Leave Management', 0, '2024-02-15 19:56:33', '2024-02-15 19:56:33'),
(16, 'Fees Management', 0, '2024-02-15 19:56:33', '2024-02-15 19:56:33');

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

--
-- Table structure for table `fees`
--

CREATE TABLE `fees` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `due_date` date NOT NULL,
  `due_charges` double(8,2) NOT NULL COMMENT 'in percentage (%)',
  `class_id` bigint(20) UNSIGNED NOT NULL,
  `school_id` bigint(20) UNSIGNED NOT NULL,
  `session_year_id` bigint(20) UNSIGNED 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;

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

--
-- Table structure for table `fees_advance`
--

CREATE TABLE `fees_advance` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `compulsory_fee_id` bigint(20) UNSIGNED NOT NULL,
  `student_id` bigint(20) UNSIGNED NOT NULL COMMENT 'user_id',
  `parent_id` bigint(20) UNSIGNED NOT NULL COMMENT 'user_id',
  `amount` double(8,2) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `fees_class_types`
--

CREATE TABLE `fees_class_types` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `class_id` bigint(20) UNSIGNED NOT NULL,
  `fees_id` bigint(20) UNSIGNED NOT NULL,
  `fees_type_id` bigint(20) UNSIGNED NOT NULL,
  `amount` double(8,2) NOT NULL,
  `optional` tinyint(1) NOT NULL COMMENT '0 - No, 1 - Yes',
  `school_id` bigint(20) UNSIGNED NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `fees_installments`
--

CREATE TABLE `fees_installments` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `due_date` date NOT NULL,
  `due_charges` int(11) NOT NULL COMMENT 'in percentage (%)',
  `fees_id` bigint(20) UNSIGNED NOT NULL,
  `session_year_id` bigint(20) UNSIGNED NOT NULL,
  `school_id` bigint(20) UNSIGNED NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `fees_paids`
--

CREATE TABLE `fees_paids` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `fees_id` bigint(20) UNSIGNED NOT NULL,
  `student_id` bigint(20) UNSIGNED NOT NULL COMMENT 'user_id',
  `is_fully_paid` tinyint(1) NOT NULL COMMENT '0 - No, 1 - Yes',
  `is_used_installment` tinyint(1) NOT NULL COMMENT '0 - No, 1 - Yes',
  `amount` double(8,2) NOT NULL,
  `date` date NOT NULL,
  `school_id` bigint(20) UNSIGNED 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;

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

--
-- Table structure for table `fees_types`
--

CREATE TABLE `fees_types` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `description` varchar(191) DEFAULT NULL,
  `school_id` bigint(20) UNSIGNED 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;

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

--
-- Table structure for table `files`
--

CREATE TABLE `files` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `modal_type` varchar(191) NOT NULL,
  `modal_id` bigint(20) UNSIGNED NOT NULL,
  `file_name` varchar(1024) DEFAULT NULL,
  `file_thumbnail` varchar(1024) DEFAULT NULL,
  `type` tinytext NOT NULL COMMENT '1 = File Upload, 2 = Youtube Link, 3 = Video Upload, 4 = Other Link',
  `file_url` varchar(1024) NOT NULL,
  `school_id` bigint(20) UNSIGNED 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;

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

--
-- Table structure for table `form_fields`
--

CREATE TABLE `form_fields` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(128) NOT NULL,
  `type` varchar(128) NOT NULL COMMENT 'text,number,textarea,dropdown,checkbox,radio,fileupload',
  `is_required` tinyint(1) NOT NULL DEFAULT 0,
  `default_values` text DEFAULT NULL COMMENT 'values of radio,checkbox,dropdown,etc',
  `other` text DEFAULT NULL COMMENT 'extra HTML attributes',
  `school_id` bigint(20) UNSIGNED NOT NULL,
  `rank` int(11) NOT NULL DEFAULT 0,
  `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;

--
-- Dumping data for table `form_fields`
--

INSERT INTO `form_fields` (`id`, `name`, `type`, `is_required`, `default_values`, `other`, `school_id`, `rank`, `created_at`, `updated_at`, `deleted_at`) VALUES
(1, 'Admission', 'number', 1, NULL, NULL, 1, 1, '2024-03-06 13:50:49', '2024-03-06 13:50:49', NULL),
(2, 'Admission', 'number', 1, NULL, NULL, 5, 1, '2024-03-07 11:26:52', '2024-03-07 11:26:52', NULL);

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

--
-- Table structure for table `grades`
--

CREATE TABLE `grades` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `starting_range` double(8,2) NOT NULL,
  `ending_range` double(8,2) NOT NULL,
  `grade` tinytext NOT NULL,
  `school_id` bigint(20) UNSIGNED NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `guidances`
--

CREATE TABLE `guidances` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(100) DEFAULT NULL,
  `link` text DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `holidays`
--

CREATE TABLE `holidays` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `date` date NOT NULL,
  `title` varchar(128) NOT NULL,
  `description` varchar(1024) DEFAULT NULL,
  `school_id` bigint(20) UNSIGNED NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `languages`
--

CREATE TABLE `languages` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(512) NOT NULL,
  `code` varchar(64) NOT NULL,
  `file` varchar(512) NOT NULL,
  `status` tinyint(4) NOT NULL DEFAULT 0 COMMENT '1=>active',
  `is_rtl` 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;

--
-- Dumping data for table `languages`
--

INSERT INTO `languages` (`id`, `name`, `code`, `file`, `status`, `is_rtl`, `created_at`, `updated_at`) VALUES
(1, 'English', 'en', 'en.json', 1, 0, '2023-11-25 07:38:41', '2023-11-25 07:38:41');

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

--
-- Table structure for table `leaves`
--

CREATE TABLE `leaves` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` bigint(20) UNSIGNED NOT NULL,
  `reason` varchar(191) NOT NULL,
  `from_date` date NOT NULL,
  `to_date` date NOT NULL,
  `status` int(11) NOT NULL DEFAULT 0 COMMENT '0 => Pending, 1 => Approved, 2 => Rejected',
  `school_id` bigint(20) UNSIGNED NOT NULL,
  `leave_master_id` bigint(20) UNSIGNED NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `leave_details`
--

CREATE TABLE `leave_details` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `leave_id` bigint(20) UNSIGNED NOT NULL,
  `date` date NOT NULL,
  `type` varchar(191) NOT NULL,
  `school_id` bigint(20) UNSIGNED NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `leave_masters`
--

CREATE TABLE `leave_masters` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `leaves` double(8,2) NOT NULL COMMENT 'Leaves per month',
  `holiday` varchar(191) NOT NULL,
  `session_year_id` bigint(20) UNSIGNED NOT NULL,
  `school_id` bigint(20) UNSIGNED NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `lessons`
--

CREATE TABLE `lessons` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(512) NOT NULL,
  `description` varchar(1024) DEFAULT NULL,
  `class_section_id` bigint(20) UNSIGNED NOT NULL,
  `class_subject_id` bigint(20) UNSIGNED NOT NULL,
  `school_id` bigint(20) UNSIGNED NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `lesson_topics`
--

CREATE TABLE `lesson_topics` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `lesson_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(128) NOT NULL,
  `description` varchar(1024) DEFAULT NULL,
  `school_id` bigint(20) UNSIGNED NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `mediums`
--

CREATE TABLE `mediums` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(512) NOT NULL,
  `school_id` bigint(20) UNSIGNED NOT NULL,
  `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;

--
-- Dumping data for table `mediums`
--

INSERT INTO `mediums` (`id`, `name`, `school_id`, `deleted_at`, `created_at`, `updated_at`) VALUES
(1, 'English', 1, NULL, '2024-03-05 13:55:08', '2024-03-05 13:55:08'),
(2, 'Hindi', 1, NULL, '2024-03-05 13:55:23', '2024-03-05 13:55:23'),
(3, 'english', 5, NULL, '2024-03-07 11:16:06', '2024-03-07 11:16:06'),
(4, 'hindi', 5, NULL, '2024-03-07 11:16:28', '2024-03-07 11:16:28'),
(5, 'Hindi', 2, NULL, '2024-03-07 11:32:28', '2024-03-07 11:32:28'),
(6, 'English', 2, NULL, '2024-03-07 11:32:36', '2024-03-07 11:32:36');

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

--
-- Table structure for table `migrations`
--

CREATE TABLE `migrations` (
  `id` int(10) UNSIGNED NOT NULL,
  `migration` varchar(191) NOT NULL,
  `batch` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `migrations`
--

INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES
(1, '2014_10_12_000000_create_users_table', 1),
(2, '2014_10_12_100000_create_password_resets_table', 1),
(3, '2019_08_19_000000_create_failed_jobs_table', 1),
(4, '2019_12_14_000001_create_personal_access_tokens_table', 1),
(5, '2022_04_01_091033_create_permission_tables', 1),
(6, '2022_04_01_105826_all_tables', 1),
(7, '2023_11_16_134449_version1-0-1', 1),
(8, '2023_12_07_120054_version1_1_0', 1);

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

--
-- Table structure for table `model_has_permissions`
--

CREATE TABLE `model_has_permissions` (
  `permission_id` bigint(20) UNSIGNED NOT NULL,
  `model_type` varchar(191) NOT NULL,
  `model_id` bigint(20) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `model_has_roles`
--

CREATE TABLE `model_has_roles` (
  `role_id` bigint(20) UNSIGNED NOT NULL,
  `model_type` varchar(191) NOT NULL,
  `model_id` bigint(20) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `model_has_roles`
--

INSERT INTO `model_has_roles` (`role_id`, `model_type`, `model_id`) VALUES
(1, 'App\\Models\\User', 1),
(2, 'App\\Models\\User', 2),
(2, 'App\\Models\\User', 3),
(2, 'App\\Models\\User', 5),
(2, 'App\\Models\\User', 6),
(2, 'App\\Models\\User', 10),
(2, 'App\\Models\\User', 14),
(2, 'App\\Models\\User', 23),
(2, 'App\\Models\\User', 40),
(2, 'App\\Models\\User', 53),
(2, 'App\\Models\\User', 57),
(2, 'App\\Models\\User', 58),
(2, 'App\\Models\\User', 60),
(3, 'App\\Models\\User', 4),
(3, 'App\\Models\\User', 7),
(3, 'App\\Models\\User', 8),
(3, 'App\\Models\\User', 9),
(3, 'App\\Models\\User', 13),
(3, 'App\\Models\\User', 16),
(3, 'App\\Models\\User', 17),
(3, 'App\\Models\\User', 18),
(3, 'App\\Models\\User', 20),
(3, 'App\\Models\\User', 24),
(3, 'App\\Models\\User', 26),
(3, 'App\\Models\\User', 27),
(3, 'App\\Models\\User', 28),
(3, 'App\\Models\\User', 59),
(3, 'App\\Models\\User', 62),
(3, 'App\\Models\\User', 63),
(3, 'App\\Models\\User', 64),
(4, 'App\\Models\\User', 11),
(4, 'App\\Models\\User', 21),
(4, 'App\\Models\\User', 29),
(4, 'App\\Models\\User', 34),
(4, 'App\\Models\\User', 41),
(4, 'App\\Models\\User', 44),
(4, 'App\\Models\\User', 50),
(16, 'App\\Models\\User', 12),
(16, 'App\\Models\\User', 15),
(16, 'App\\Models\\User', 19),
(16, 'App\\Models\\User', 22),
(16, 'App\\Models\\User', 25),
(16, 'App\\Models\\User', 30),
(16, 'App\\Models\\User', 31),
(16, 'App\\Models\\User', 32),
(16, 'App\\Models\\User', 33),
(16, 'App\\Models\\User', 35),
(16, 'App\\Models\\User', 36),
(16, 'App\\Models\\User', 39),
(16, 'App\\Models\\User', 42),
(16, 'App\\Models\\User', 43),
(16, 'App\\Models\\User', 45),
(16, 'App\\Models\\User', 46),
(16, 'App\\Models\\User', 47),
(16, 'App\\Models\\User', 48),
(16, 'App\\Models\\User', 49),
(16, 'App\\Models\\User', 51),
(16, 'App\\Models\\User', 52),
(17, 'App\\Models\\User', 61);

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

--
-- Table structure for table `online_exams`
--

CREATE TABLE `online_exams` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `class_section_id` bigint(20) UNSIGNED NOT NULL,
  `class_subject_id` bigint(20) UNSIGNED NOT NULL,
  `title` varchar(128) NOT NULL,
  `exam_key` bigint(20) NOT NULL,
  `duration` int(11) NOT NULL COMMENT 'in minutes',
  `start_date` datetime NOT NULL,
  `end_date` datetime NOT NULL,
  `session_year_id` bigint(20) UNSIGNED NOT NULL,
  `school_id` bigint(20) UNSIGNED 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;

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

--
-- Table structure for table `online_exam_questions`
--

CREATE TABLE `online_exam_questions` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `class_section_id` bigint(20) UNSIGNED NOT NULL,
  `class_subject_id` bigint(20) UNSIGNED NOT NULL,
  `question` varchar(1024) NOT NULL,
  `image_url` varchar(1024) DEFAULT NULL,
  `note` varchar(1024) DEFAULT NULL,
  `school_id` bigint(20) UNSIGNED NOT NULL,
  `last_edited_by` bigint(20) UNSIGNED NOT NULL COMMENT 'teacher_user_id',
  `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;

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

--
-- Table structure for table `online_exam_question_choices`
--

CREATE TABLE `online_exam_question_choices` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `online_exam_id` bigint(20) UNSIGNED NOT NULL,
  `question_id` bigint(20) UNSIGNED NOT NULL,
  `marks` int(11) DEFAULT NULL,
  `school_id` bigint(20) UNSIGNED 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;

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

--
-- Table structure for table `online_exam_question_options`
--

CREATE TABLE `online_exam_question_options` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `question_id` bigint(20) UNSIGNED NOT NULL,
  `option` varchar(1024) NOT NULL,
  `is_answer` tinyint(4) NOT NULL COMMENT '1 - yes, 0 - no',
  `school_id` bigint(20) UNSIGNED 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;

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

--
-- Table structure for table `online_exam_student_answers`
--

CREATE TABLE `online_exam_student_answers` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `student_id` bigint(20) UNSIGNED NOT NULL COMMENT 'user_id',
  `online_exam_id` bigint(20) UNSIGNED NOT NULL,
  `question_id` bigint(20) UNSIGNED NOT NULL,
  `option_id` bigint(20) UNSIGNED NOT NULL,
  `submitted_date` date NOT NULL,
  `school_id` bigint(20) UNSIGNED 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;

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

--
-- Table structure for table `optional_fees`
--

CREATE TABLE `optional_fees` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `student_id` bigint(20) UNSIGNED NOT NULL COMMENT 'user_id',
  `class_id` bigint(20) UNSIGNED NOT NULL,
  `payment_transaction_id` bigint(20) UNSIGNED DEFAULT NULL,
  `fees_class_id` bigint(20) UNSIGNED DEFAULT NULL,
  `mode` enum('Cash','Cheque','Online') NOT NULL,
  `cheque_no` varchar(191) DEFAULT NULL,
  `amount` double(8,2) NOT NULL,
  `fees_paid_id` bigint(20) UNSIGNED DEFAULT NULL,
  `date` date NOT NULL,
  `school_id` bigint(20) UNSIGNED NOT NULL,
  `status` enum('Success','Pending','Failed') 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;

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

--
-- Table structure for table `packages`
--

CREATE TABLE `packages` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) DEFAULT NULL,
  `description` varchar(191) DEFAULT NULL,
  `tagline` varchar(191) DEFAULT NULL,
  `student_charge` double(8,4) NOT NULL DEFAULT 0.0000,
  `staff_charge` double(8,4) NOT NULL DEFAULT 0.0000,
  `status` tinyint(4) NOT NULL DEFAULT 0 COMMENT '0 => Unpublished, 1 => Published',
  `is_trial` int(11) NOT NULL DEFAULT 0,
  `highlight` tinyint(4) NOT NULL DEFAULT 0 COMMENT '0 => No, 1 => Yes',
  `rank` int(11) NOT NULL DEFAULT 0,
  `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;

--
-- Dumping data for table `packages`
--

INSERT INTO `packages` (`id`, `name`, `description`, `tagline`, `student_charge`, `staff_charge`, `status`, `is_trial`, `highlight`, `rank`, `created_at`, `updated_at`, `deleted_at`) VALUES
(1, 'Advance', 'Advance', 'Standerd Plan', 50.0000, 90.0000, 1, 0, 1, 1, '2024-03-06 09:01:41', '2024-03-07 13:46:33', NULL),
(2, 'Basic', 'Basic', 'Basic Plan', 5.0000, 10.0000, 1, 0, 1, 0, '2024-03-06 09:09:10', '2024-03-07 13:49:48', NULL),
(3, 'Standerd', 'Standerd', 'Standerd Plan', 20.0000, 30.0000, 1, 0, 1, 0, '2024-03-06 09:10:44', '2024-03-07 13:46:09', NULL);

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

--
-- Table structure for table `package_features`
--

CREATE TABLE `package_features` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `package_id` bigint(20) UNSIGNED NOT NULL,
  `feature_id` bigint(20) UNSIGNED NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `package_features`
--

INSERT INTO `package_features` (`id`, `package_id`, `feature_id`, `created_at`, `updated_at`) VALUES
(1, 1, 1, '2024-03-06 09:01:41', '2024-03-07 13:46:33'),
(2, 1, 2, '2024-03-06 09:01:41', '2024-03-07 13:46:33'),
(3, 1, 4, '2024-03-06 09:01:41', '2024-03-07 13:46:33'),
(4, 1, 5, '2024-03-06 09:01:41', '2024-03-07 13:46:33'),
(55, 2, 1, '2024-03-06 09:09:10', '2024-10-01 16:31:37'),
(56, 2, 2, '2024-03-06 09:09:10', '2024-10-01 16:31:37'),
(57, 2, 4, '2024-03-06 09:09:10', '2024-10-01 16:31:37'),
(58, 2, 5, '2024-03-06 09:09:10', '2024-10-01 16:31:37'),
(59, 3, 1, '2024-03-06 09:10:44', '2024-03-07 13:46:09'),
(60, 3, 2, '2024-03-06 09:10:44', '2024-03-07 13:46:09'),
(61, 3, 4, '2024-03-06 09:10:44', '2024-03-07 13:46:09'),
(62, 3, 5, '2024-03-06 09:10:44', '2024-03-07 13:46:09'),
(225, 2, 15, '2024-03-07 13:42:09', '2024-10-01 16:31:37'),
(226, 2, 14, '2024-03-07 13:42:09', '2024-10-01 16:31:37'),
(227, 2, 13, '2024-03-07 13:42:09', '2024-10-01 16:31:37'),
(229, 2, 7, '2024-03-07 13:42:09', '2024-10-01 16:31:37'),
(230, 2, 6, '2024-03-07 13:42:09', '2024-10-01 16:31:37'),
(235, 3, 15, '2024-03-07 13:43:59', '2024-03-07 13:46:09'),
(236, 3, 14, '2024-03-07 13:43:59', '2024-03-07 13:46:09'),
(237, 3, 13, '2024-03-07 13:43:59', '2024-03-07 13:46:09'),
(238, 3, 12, '2024-03-07 13:43:59', '2024-03-07 13:46:09'),
(239, 3, 11, '2024-03-07 13:43:59', '2024-03-07 13:46:09'),
(240, 3, 10, '2024-03-07 13:43:59', '2024-03-07 13:46:09'),
(241, 3, 9, '2024-03-07 13:43:59', '2024-03-07 13:46:09'),
(242, 3, 8, '2024-03-07 13:43:59', '2024-03-07 13:46:09'),
(247, 1, 15, '2024-03-07 13:45:14', '2024-03-07 13:46:33'),
(248, 1, 14, '2024-03-07 13:45:14', '2024-03-07 13:46:33'),
(249, 1, 13, '2024-03-07 13:45:14', '2024-03-07 13:46:33'),
(250, 1, 12, '2024-03-07 13:45:14', '2024-03-07 13:46:33'),
(251, 1, 11, '2024-03-07 13:45:14', '2024-03-07 13:46:33'),
(252, 1, 10, '2024-03-07 13:45:14', '2024-03-07 13:46:33'),
(253, 1, 9, '2024-03-07 13:45:14', '2024-03-07 13:46:33'),
(254, 1, 8, '2024-03-07 13:45:14', '2024-03-07 13:46:33'),
(255, 1, 7, '2024-03-07 13:45:14', '2024-03-07 13:46:33'),
(256, 1, 6, '2024-03-07 13:45:14', '2024-03-07 13:46:33'),
(257, 1, 3, '2024-03-07 13:45:14', '2024-03-07 13:46:33'),
(258, 1, 16, '2024-03-07 13:45:14', '2024-03-07 13:46:33'),
(301, 2, 12, '2024-10-01 16:31:37', '2024-10-01 16:31:37'),
(302, 2, 11, '2024-10-01 16:31:37', '2024-10-01 16:31:37'),
(303, 2, 10, '2024-10-01 16:31:37', '2024-10-01 16:31:37'),
(304, 2, 9, '2024-10-01 16:31:37', '2024-10-01 16:31:37'),
(305, 2, 8, '2024-10-01 16:31:37', '2024-10-01 16:31:37'),
(306, 2, 3, '2024-10-01 16:31:37', '2024-10-01 16:31:37'),
(307, 2, 16, '2024-10-01 16:31:37', '2024-10-01 16:31:37');

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

--
-- Table structure for table `password_resets`
--

CREATE TABLE `password_resets` (
  `email` varchar(191) NOT NULL,
  `token` varchar(191) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `password_resets`
--

INSERT INTO `password_resets` (`email`, `token`, `created_at`) VALUES
('guardian@demo.com', '$2y$10$so3R8JMFNvi0j9H1dDlPtu9L7q9ZArOIyK2j.6FgXQlRrbVrOYaRC', '2024-03-08 00:32:22');

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

--
-- Table structure for table `payment_configurations`
--

CREATE TABLE `payment_configurations` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `payment_method` varchar(191) NOT NULL,
  `api_key` varchar(191) NOT NULL,
  `secret_key` varchar(191) NOT NULL,
  `webhook_secret_key` varchar(191) NOT NULL,
  `currency_code` varchar(128) DEFAULT NULL,
  `status` tinyint(1) NOT NULL DEFAULT 1 COMMENT '0 - Disabled, 1 - Enabled',
  `school_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;

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

--
-- Table structure for table `payment_transactions`
--

CREATE TABLE `payment_transactions` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` bigint(20) UNSIGNED NOT NULL,
  `amount` double(8,2) NOT NULL,
  `payment_gateway` varchar(191) NOT NULL,
  `order_id` varchar(191) DEFAULT NULL COMMENT 'order_id / payment_intent_id',
  `payment_id` varchar(191) DEFAULT NULL,
  `payment_signature` varchar(191) DEFAULT NULL,
  `payment_status` enum('failed','succeed','pending') NOT NULL,
  `school_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;

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

--
-- Table structure for table `permissions`
--

CREATE TABLE `permissions` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `guard_name` varchar(191) NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `permissions`
--

INSERT INTO `permissions` (`id`, `name`, `guard_name`, `created_at`, `updated_at`) VALUES
(1, 'role-list', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(2, 'role-create', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(3, 'role-edit', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(4, 'role-delete', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(5, 'medium-list', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(6, 'medium-create', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(7, 'medium-edit', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(8, 'medium-delete', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(9, 'section-list', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(10, 'section-create', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(11, 'section-edit', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(12, 'section-delete', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(13, 'class-list', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(14, 'class-create', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(15, 'class-edit', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(16, 'class-delete', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(17, 'class-section-list', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(18, 'class-section-create', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(19, 'class-section-edit', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(20, 'class-section-delete', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(21, 'subject-list', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(22, 'subject-create', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(23, 'subject-edit', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(24, 'subject-delete', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(25, 'teacher-list', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(26, 'teacher-create', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(27, 'teacher-edit', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(28, 'teacher-delete', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(29, 'guardian-list', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(30, 'guardian-create', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(31, 'guardian-edit', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(32, 'guardian-delete', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(33, 'session-year-list', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(34, 'session-year-create', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(35, 'session-year-edit', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(36, 'session-year-delete', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(37, 'student-list', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(38, 'student-create', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(39, 'student-edit', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(40, 'student-delete', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(41, 'timetable-list', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(42, 'timetable-create', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(43, 'timetable-edit', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(44, 'timetable-delete', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(45, 'attendance-list', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(46, 'attendance-create', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(47, 'attendance-edit', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(48, 'attendance-delete', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(49, 'holiday-list', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(50, 'holiday-create', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(51, 'holiday-edit', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(52, 'holiday-delete', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(53, 'announcement-list', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(54, 'announcement-create', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(55, 'announcement-edit', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(56, 'announcement-delete', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(57, 'slider-list', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(58, 'slider-create', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(59, 'slider-edit', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(60, 'slider-delete', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(61, 'promote-student-list', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(62, 'promote-student-create', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(63, 'promote-student-edit', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(64, 'promote-student-delete', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(65, 'language-list', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(66, 'language-create', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(67, 'language-edit', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(68, 'language-delete', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(69, 'lesson-list', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(70, 'lesson-create', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(71, 'lesson-edit', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(72, 'lesson-delete', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(73, 'topic-list', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(74, 'topic-create', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(75, 'topic-edit', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(76, 'topic-delete', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(77, 'schools-list', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(78, 'schools-create', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(79, 'schools-edit', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(80, 'schools-delete', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(81, 'form-fields-list', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(82, 'form-fields-create', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(83, 'form-fields-edit', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(84, 'form-fields-delete', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(85, 'grade-list', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(86, 'grade-create', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(87, 'grade-edit', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(88, 'grade-delete', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(89, 'package-list', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(90, 'package-create', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(91, 'package-edit', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(92, 'package-delete', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(93, 'addons-list', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(94, 'addons-create', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(95, 'addons-edit', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(96, 'addons-delete', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(97, 'assignment-list', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(98, 'assignment-create', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(99, 'assignment-edit', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(100, 'assignment-delete', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(101, 'assignment-submission', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(102, 'exam-list', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(103, 'exam-create', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(104, 'exam-edit', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(105, 'exam-delete', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(106, 'exam-timetable-list', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(107, 'exam-timetable-create', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(108, 'exam-timetable-edit', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(109, 'exam-timetable-delete', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(110, 'exam-upload-marks', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(111, 'exam-result', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(112, 'system-setting-manage', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(113, 'fcm-setting-create', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(114, 'email-setting-create', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(115, 'privacy-policy', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(116, 'contact-us', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(117, 'about-us', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(118, 'terms-condition', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(119, 'class-teacher', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(120, 'student-reset-password', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(121, 'reset-password-list', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(122, 'student-change-password', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(123, 'update-admin-profile', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(124, 'fees-classes', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(125, 'fees-paid', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(126, 'fees-config', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(127, 'school-setting-manage', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(128, 'app-settings', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(129, 'subscription-view', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(130, 'online-exam-list', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(131, 'online-exam-create', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(132, 'online-exam-edit', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(133, 'online-exam-delete', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(134, 'online-exam-questions-list', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(135, 'online-exam-questions-create', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(136, 'online-exam-questions-edit', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(137, 'online-exam-questions-delete', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(138, 'fees-type-list', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(139, 'fees-type-create', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(140, 'fees-type-edit', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(141, 'fees-type-delete', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(142, 'fees-class-list', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(143, 'fees-class-create', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(144, 'fees-class-edit', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(145, 'fees-class-delete', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(146, 'staff-list', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(147, 'staff-create', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(148, 'staff-edit', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(149, 'staff-delete', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(150, 'expense-category-list', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(151, 'expense-category-create', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(152, 'expense-category-edit', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(153, 'expense-category-delete', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(154, 'expense-list', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(155, 'expense-create', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(156, 'expense-edit', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(157, 'expense-delete', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(158, 'semester-list', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(159, 'semester-create', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(160, 'semester-edit', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(161, 'semester-delete', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(162, 'payroll-list', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(163, 'payroll-create', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(164, 'payroll-edit', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(165, 'payroll-delete', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(166, 'stream-list', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(167, 'stream-create', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(168, 'stream-edit', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(169, 'stream-delete', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(170, 'shift-list', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(171, 'shift-create', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(172, 'shift-edit', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(173, 'shift-delete', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(174, 'faqs-list', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(175, 'faqs-create', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(176, 'faqs-edit', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(177, 'faqs-delete', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(178, 'online-exam-result-list', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(179, 'fcm-setting-manage', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(180, 'fees-list', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(181, 'fees-create', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(182, 'fees-edit', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(183, 'fees-delete', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(184, 'transfer-student-list', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(185, 'transfer-student-create', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(186, 'transfer-student-edit', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(187, 'transfer-student-delete', 'web', '2023-11-25 07:38:41', '2024-02-15 19:56:33'),
(188, 'guidance-list', 'web', '2024-02-15 19:56:33', '2024-02-15 19:56:33'),
(189, 'guidance-create', 'web', '2024-02-15 19:56:33', '2024-02-15 19:56:33'),
(190, 'guidance-edit', 'web', '2024-02-15 19:56:33', '2024-02-15 19:56:33'),
(191, 'guidance-delete', 'web', '2024-02-15 19:56:33', '2024-02-15 19:56:33'),
(192, 'leave-list', 'web', '2024-02-15 19:56:33', '2024-02-15 19:56:33'),
(193, 'leave-create', 'web', '2024-02-15 19:56:33', '2024-02-15 19:56:33'),
(194, 'leave-edit', 'web', '2024-02-15 19:56:33', '2024-02-15 19:56:33'),
(195, 'leave-delete', 'web', '2024-02-15 19:56:33', '2024-02-15 19:56:33'),
(196, 'approve-leave', 'web', '2024-02-15 19:56:33', '2024-02-15 19:56:33'),
(197, 'front-site-setting', 'web', '2024-02-15 19:56:33', '2024-02-15 19:56:33'),
(198, 'payment-settings', 'web', '2024-02-15 19:56:33', '2024-02-15 19:56:33'),
(199, 'subscription-settings', 'web', '2024-02-15 19:56:33', '2024-02-15 19:56:33'),
(200, 'subscription-change-bills', 'web', '2024-02-15 19:56:33', '2024-02-15 19:56:33'),
(201, 'school-terms-condition', 'web', '2024-02-15 19:56:33', '2024-02-15 19:56:33');

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

--
-- Table structure for table `personal_access_tokens`
--

CREATE TABLE `personal_access_tokens` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `tokenable_type` varchar(191) NOT NULL,
  `tokenable_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `token` varchar(64) NOT NULL,
  `abilities` text DEFAULT NULL,
  `last_used_at` timestamp NULL DEFAULT NULL,
  `expires_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;

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

--
-- Table structure for table `promote_students`
--

CREATE TABLE `promote_students` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `student_id` bigint(20) UNSIGNED NOT NULL COMMENT 'user_id',
  `class_section_id` bigint(20) UNSIGNED NOT NULL,
  `session_year_id` bigint(20) UNSIGNED NOT NULL,
  `result` tinyint(4) NOT NULL DEFAULT 1 COMMENT '1=>Pass,0=>fail',
  `status` tinyint(4) NOT NULL DEFAULT 1 COMMENT '1=>continue,0=>leave',
  `school_id` bigint(20) UNSIGNED 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;

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

--
-- Table structure for table `roles`
--

CREATE TABLE `roles` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `guard_name` varchar(191) NOT NULL,
  `school_id` bigint(20) UNSIGNED DEFAULT NULL,
  `custom_role` tinyint(1) NOT NULL DEFAULT 1,
  `editable` tinyint(1) 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;

--
-- Dumping data for table `roles`
--

INSERT INTO `roles` (`id`, `name`, `guard_name`, `school_id`, `custom_role`, `editable`, `created_at`, `updated_at`) VALUES
(1, 'Super Admin', 'web', NULL, 0, 0, '2023-11-25 07:38:41', '2023-11-25 07:38:41'),
(2, 'School Admin', 'web', NULL, 0, 0, '2023-11-25 07:38:41', '2023-11-25 07:38:41'),
(3, 'Teacher', 'web', NULL, 1, 1, '2024-02-15 19:56:33', '2024-02-15 19:56:33'),
(4, 'Guardian', 'web', 1, 0, 0, '2024-03-05 11:48:53', '2024-03-05 11:48:53'),
(5, 'Student', 'web', 1, 0, 0, '2024-03-05 11:48:53', '2024-03-05 11:48:53'),
(6, 'Teacher', 'web', 1, 0, 1, '2024-03-05 11:48:53', '2024-03-05 11:48:53'),
(7, 'Guardian', 'web', 2, 0, 0, '2024-03-05 11:51:09', '2024-03-05 11:51:09'),
(8, 'Student', 'web', 2, 0, 0, '2024-03-05 11:51:09', '2024-03-05 11:51:09'),
(9, 'Teacher', 'web', 2, 0, 1, '2024-03-05 11:51:09', '2024-03-05 11:51:09'),
(10, 'Guardian', 'web', 3, 0, 0, '2024-03-06 12:55:24', '2024-03-06 12:55:24'),
(11, 'Student', 'web', 3, 0, 0, '2024-03-06 12:55:24', '2024-03-06 12:55:24'),
(12, 'Teacher', 'web', 3, 0, 1, '2024-03-06 12:55:24', '2024-03-06 12:55:24'),
(13, 'Guardian', 'web', 4, 0, 0, '2024-03-06 13:00:49', '2024-03-06 13:00:49'),
(14, 'Student', 'web', 4, 0, 0, '2024-03-06 13:00:49', '2024-03-06 13:00:49'),
(15, 'Teacher', 'web', 4, 0, 1, '2024-03-06 13:00:49', '2024-03-06 13:00:49'),
(16, 'student', 'web', NULL, 1, 1, '2024-03-06 13:26:29', '2024-03-06 13:26:29'),
(17, 'Science Teacher', 'web', NULL, 1, 1, '2024-03-06 13:27:25', '2024-03-06 13:27:25'),
(18, 'Math Teacher', 'web', NULL, 1, 1, '2024-03-06 13:27:49', '2024-03-06 13:27:49'),
(19, 'Guardian', 'web', 5, 0, 0, '2024-03-06 17:10:47', '2024-03-06 17:10:47'),
(20, 'Student', 'web', 5, 0, 0, '2024-03-06 17:10:47', '2024-03-06 17:10:47'),
(21, 'Teacher', 'web', 5, 0, 1, '2024-03-06 17:10:47', '2024-03-06 17:10:47'),
(22, 'Guardian', 'web', 6, 0, 0, '2024-03-07 11:07:54', '2024-03-07 11:07:54'),
(23, 'Student', 'web', 6, 0, 0, '2024-03-07 11:07:54', '2024-03-07 11:07:54'),
(24, 'Teacher', 'web', 6, 0, 1, '2024-03-07 11:07:54', '2024-03-07 11:07:54'),
(25, 'Guardian', 'web', 7, 0, 0, '2024-03-07 12:26:22', '2024-03-07 12:26:22'),
(26, 'Student', 'web', 7, 0, 0, '2024-03-07 12:26:22', '2024-03-07 12:26:22'),
(27, 'Teacher', 'web', 7, 0, 1, '2024-03-07 12:26:22', '2024-03-07 12:26:22'),
(28, 'school list', 'web', NULL, 1, 1, '2024-03-07 12:32:51', '2024-03-07 12:32:51'),
(29, 'teacher demo', 'web', NULL, 1, 1, '2024-03-07 12:39:46', '2024-03-07 12:39:46'),
(30, 'Guardian', 'web', 8, 0, 0, '2024-03-09 10:33:33', '2024-03-09 10:33:33'),
(31, 'Student', 'web', 8, 0, 0, '2024-03-09 10:33:33', '2024-03-09 10:33:33'),
(32, 'Teacher', 'web', 8, 0, 1, '2024-03-09 10:33:33', '2024-03-09 10:33:33'),
(33, 'Guardian', 'web', 9, 0, 0, '2024-03-28 14:26:58', '2024-03-28 14:26:58'),
(34, 'Student', 'web', 9, 0, 0, '2024-03-28 14:26:58', '2024-03-28 14:26:58'),
(35, 'Teacher', 'web', 9, 0, 1, '2024-03-28 14:26:58', '2024-03-28 14:26:58'),
(45, 'Guardian', 'web', 13, 0, 0, '2024-03-28 14:33:52', '2024-03-28 14:33:52'),
(46, 'Student', 'web', 13, 0, 0, '2024-03-28 14:33:52', '2024-03-28 14:33:52'),
(47, 'Teacher', 'web', 13, 0, 1, '2024-03-28 14:33:52', '2024-03-28 14:33:52'),
(48, 'Guardian', 'web', 14, 0, 0, '2024-07-24 16:22:52', '2024-07-24 16:22:52'),
(49, 'Student', 'web', 14, 0, 0, '2024-07-24 16:22:52', '2024-07-24 16:22:52'),
(50, 'Teacher', 'web', 14, 0, 1, '2024-07-24 16:22:52', '2024-07-24 16:22:52'),
(51, 'Guardian', 'web', 15, 0, 0, '2024-10-01 15:55:20', '2024-10-01 15:55:20'),
(52, 'Student', 'web', 15, 0, 0, '2024-10-01 15:55:20', '2024-10-01 15:55:20'),
(53, 'Teacher', 'web', 15, 0, 1, '2024-10-01 15:55:20', '2024-10-01 15:55:20');

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

--
-- Table structure for table `role_has_permissions`
--

CREATE TABLE `role_has_permissions` (
  `permission_id` bigint(20) UNSIGNED NOT NULL,
  `role_id` bigint(20) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `role_has_permissions`
--

INSERT INTO `role_has_permissions` (`permission_id`, `role_id`) VALUES
(1, 1),
(1, 2),
(1, 29),
(2, 1),
(2, 2),
(2, 29),
(3, 1),
(3, 2),
(3, 29),
(4, 1),
(4, 2),
(4, 29),
(5, 2),
(6, 2),
(7, 2),
(8, 2),
(9, 2),
(10, 2),
(11, 2),
(12, 2),
(13, 2),
(14, 2),
(15, 2),
(16, 2),
(17, 2),
(17, 3),
(17, 6),
(17, 9),
(17, 12),
(17, 15),
(17, 21),
(17, 24),
(17, 27),
(17, 32),
(17, 35),
(17, 47),
(17, 50),
(17, 53),
(18, 2),
(19, 2),
(20, 2),
(21, 2),
(22, 2),
(23, 2),
(24, 2),
(25, 2),
(26, 2),
(27, 2),
(28, 2),
(29, 2),
(30, 2),
(31, 2),
(32, 2),
(33, 2),
(34, 2),
(35, 2),
(36, 2),
(37, 2),
(37, 3),
(37, 6),
(37, 9),
(37, 12),
(37, 15),
(37, 21),
(37, 24),
(37, 27),
(37, 32),
(37, 35),
(37, 47),
(37, 50),
(37, 53),
(38, 2),
(39, 2),
(40, 2),
(41, 2),
(41, 3),
(41, 6),
(41, 9),
(41, 12),
(41, 15),
(41, 21),
(41, 24),
(41, 27),
(41, 32),
(41, 35),
(41, 47),
(41, 50),
(41, 53),
(42, 2),
(43, 2),
(44, 2),
(45, 2),
(45, 3),
(46, 3),
(47, 3),
(48, 3),
(49, 2),
(49, 3),
(49, 6),
(49, 9),
(49, 12),
(49, 15),
(49, 21),
(49, 24),
(49, 27),
(49, 32),
(49, 35),
(49, 47),
(49, 50),
(49, 53),
(50, 2),
(51, 2),
(52, 2),
(53, 2),
(53, 3),
(53, 6),
(53, 9),
(53, 12),
(53, 15),
(53, 21),
(53, 24),
(53, 27),
(53, 32),
(53, 35),
(53, 47),
(53, 50),
(53, 53),
(54, 2),
(54, 3),
(54, 6),
(54, 9),
(54, 12),
(54, 15),
(54, 21),
(54, 24),
(54, 27),
(54, 32),
(54, 35),
(54, 47),
(54, 50),
(54, 53),
(55, 2),
(55, 3),
(55, 6),
(55, 9),
(55, 12),
(55, 15),
(55, 21),
(55, 24),
(55, 27),
(55, 32),
(55, 35),
(55, 47),
(55, 50),
(55, 53),
(56, 2),
(56, 3),
(56, 6),
(56, 9),
(56, 12),
(56, 15),
(56, 21),
(56, 24),
(56, 27),
(56, 32),
(56, 35),
(56, 47),
(56, 50),
(56, 53),
(57, 2),
(58, 2),
(59, 2),
(60, 2),
(61, 2),
(62, 2),
(63, 2),
(64, 2),
(65, 1),
(65, 29),
(66, 1),
(66, 29),
(67, 1),
(67, 29),
(68, 1),
(68, 29),
(69, 3),
(69, 6),
(69, 9),
(69, 12),
(69, 15),
(69, 21),
(69, 24),
(69, 27),
(69, 32),
(69, 35),
(69, 47),
(69, 50),
(69, 53),
(70, 3),
(70, 6),
(70, 9),
(70, 12),
(70, 15),
(70, 21),
(70, 24),
(70, 27),
(70, 32),
(70, 35),
(70, 47),
(70, 50),
(70, 53),
(71, 3),
(71, 6),
(71, 9),
(71, 12),
(71, 15),
(71, 21),
(71, 24),
(71, 27),
(71, 32),
(71, 35),
(71, 47),
(71, 50),
(71, 53),
(72, 3),
(72, 6),
(72, 9),
(72, 12),
(72, 15),
(72, 21),
(72, 24),
(72, 27),
(72, 32),
(72, 35),
(72, 47),
(72, 50),
(72, 53),
(73, 3),
(73, 6),
(73, 9),
(73, 12),
(73, 15),
(73, 21),
(73, 24),
(73, 27),
(73, 32),
(73, 35),
(73, 47),
(73, 50),
(73, 53),
(74, 3),
(74, 6),
(74, 9),
(74, 12),
(74, 15),
(74, 21),
(74, 24),
(74, 27),
(74, 32),
(74, 35),
(74, 47),
(74, 50),
(74, 53),
(75, 3),
(75, 6),
(75, 9),
(75, 12),
(75, 15),
(75, 21),
(75, 24),
(75, 27),
(75, 32),
(75, 35),
(75, 47),
(75, 50),
(75, 53),
(76, 3),
(76, 6),
(76, 9),
(76, 12),
(76, 15),
(76, 21),
(76, 24),
(76, 27),
(76, 32),
(76, 35),
(76, 47),
(76, 50),
(76, 53),
(77, 1),
(77, 16),
(77, 28),
(77, 29),
(78, 1),
(79, 1),
(80, 1),
(81, 2),
(82, 2),
(83, 2),
(84, 2),
(85, 2),
(86, 2),
(87, 2),
(88, 2),
(89, 1),
(90, 1),
(91, 1),
(92, 1),
(93, 1),
(94, 1),
(95, 1),
(96, 1),
(97, 3),
(97, 6),
(97, 9),
(97, 12),
(97, 15),
(97, 21),
(97, 24),
(97, 27),
(97, 32),
(97, 35),
(97, 47),
(97, 50),
(97, 53),
(98, 3),
(98, 6),
(98, 9),
(98, 12),
(98, 15),
(98, 21),
(98, 24),
(98, 27),
(98, 32),
(98, 35),
(98, 47),
(98, 50),
(98, 53),
(99, 3),
(99, 6),
(99, 9),
(99, 12),
(99, 15),
(99, 21),
(99, 24),
(99, 27),
(99, 32),
(99, 35),
(99, 47),
(99, 50),
(99, 53),
(100, 3),
(100, 6),
(100, 9),
(100, 12),
(100, 15),
(100, 21),
(100, 24),
(100, 27),
(100, 32),
(100, 35),
(100, 47),
(100, 50),
(100, 53),
(101, 2),
(101, 3),
(101, 6),
(101, 9),
(101, 12),
(101, 15),
(101, 21),
(101, 24),
(101, 27),
(101, 32),
(101, 35),
(101, 47),
(101, 50),
(101, 53),
(102, 2),
(103, 2),
(104, 2),
(105, 2),
(106, 2),
(107, 2),
(109, 2),
(110, 3),
(111, 2),
(111, 3),
(112, 1),
(113, 1),
(114, 1),
(115, 1),
(116, 1),
(117, 1),
(118, 1),
(120, 2),
(121, 2),
(122, 2),
(123, 1),
(123, 2),
(125, 2),
(126, 2),
(127, 2),
(128, 1),
(129, 1),
(130, 2),
(130, 3),
(130, 6),
(130, 9),
(130, 12),
(130, 15),
(130, 21),
(130, 24),
(130, 27),
(130, 32),
(130, 35),
(130, 47),
(130, 50),
(130, 53),
(131, 2),
(131, 3),
(131, 6),
(131, 9),
(131, 12),
(131, 15),
(131, 21),
(131, 24),
(131, 27),
(131, 32),
(131, 35),
(131, 47),
(131, 50),
(131, 53),
(132, 2),
(132, 3),
(132, 6),
(132, 9),
(132, 12),
(132, 15),
(132, 21),
(132, 24),
(132, 27),
(132, 32),
(132, 35),
(132, 47),
(132, 50),
(132, 53),
(133, 2),
(133, 3),
(133, 6),
(133, 9),
(133, 12),
(133, 15),
(133, 21),
(133, 24),
(133, 27),
(133, 32),
(133, 35),
(133, 47),
(133, 50),
(133, 53),
(134, 2),
(134, 3),
(134, 6),
(134, 9),
(134, 12),
(134, 15),
(134, 21),
(134, 24),
(134, 27),
(134, 32),
(134, 35),
(134, 47),
(134, 50),
(134, 53),
(135, 2),
(135, 3),
(135, 6),
(135, 9),
(135, 12),
(135, 15),
(135, 21),
(135, 24),
(135, 27),
(135, 32),
(135, 35),
(135, 47),
(135, 50),
(135, 53),
(136, 2),
(136, 3),
(136, 6),
(136, 9),
(136, 12),
(136, 15),
(136, 21),
(136, 24),
(136, 27),
(136, 32),
(136, 35),
(136, 47),
(136, 50),
(136, 53),
(137, 2),
(137, 3),
(137, 6),
(137, 9),
(137, 12),
(137, 15),
(137, 21),
(137, 24),
(137, 27),
(137, 32),
(137, 35),
(137, 47),
(137, 50),
(137, 53),
(138, 2),
(139, 2),
(140, 2),
(141, 2),
(142, 2),
(143, 2),
(144, 2),
(145, 2),
(146, 1),
(146, 2),
(146, 17),
(146, 18),
(147, 1),
(147, 2),
(148, 1),
(148, 2),
(149, 1),
(149, 2),
(150, 2),
(151, 2),
(152, 2),
(153, 2),
(154, 2),
(155, 2),
(156, 2),
(157, 2),
(158, 2),
(159, 2),
(160, 2),
(161, 2),
(162, 2),
(163, 2),
(164, 2),
(165, 2),
(166, 2),
(167, 2),
(168, 2),
(169, 2),
(170, 2),
(171, 2),
(172, 2),
(173, 2),
(174, 1),
(175, 1),
(176, 1),
(177, 1),
(178, 2),
(178, 3),
(178, 6),
(178, 9),
(178, 12),
(178, 15),
(178, 21),
(178, 24),
(178, 27),
(178, 32),
(178, 35),
(178, 47),
(178, 50),
(178, 53),
(179, 1),
(180, 2),
(181, 2),
(182, 2),
(183, 2),
(184, 2),
(185, 2),
(186, 2),
(187, 2),
(188, 1),
(189, 1),
(189, 29),
(190, 1),
(190, 29),
(191, 1),
(192, 3),
(193, 3),
(194, 3),
(195, 3),
(196, 2),
(197, 1),
(199, 1),
(200, 1),
(201, 1);

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

--
-- Table structure for table `schools`
--

CREATE TABLE `schools` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `address` varchar(191) NOT NULL,
  `support_phone` varchar(191) NOT NULL,
  `support_email` varchar(191) NOT NULL,
  `tagline` varchar(191) NOT NULL,
  `logo` varchar(191) NOT NULL,
  `admin_id` bigint(20) UNSIGNED DEFAULT NULL COMMENT 'user_id',
  `status` tinyint(4) NOT NULL DEFAULT 0 COMMENT '0 => Deactivate, 1 => Active',
  `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;

--
-- Dumping data for table `schools`
--

INSERT INTO `schools` (`id`, `name`, `address`, `support_phone`, `support_email`, `tagline`, `logo`, `admin_id`, `status`, `created_at`, `updated_at`, `deleted_at`) VALUES
(1, 'UCGHSP', 'Global', '1234567890', 'admin@demo.com', 'MXUL', 'no_image_available.jpg', 2, 1, '2024-03-05 11:48:53', '2024-03-05 11:48:53', NULL),
(2, 'UCGHSP', 'Global', '1234567890', 'ucghsp@demo.com', 'MXUL', 'no_image_available.jpg', 3, 1, '2024-03-05 11:51:09', '2024-03-05 11:51:09', NULL),
(3, 'UCSP', 'global', '1234567890', 'ucsp@demo.com', 'testing', 'no_image_available.jpg', 5, 1, '2024-03-06 12:55:23', '2024-03-06 12:55:24', NULL),
(4, 'demo', 'demo', '0987654321', 'demo@demo.com', 'demo', 'no_image_available.jpg', 6, 1, '2024-03-06 13:00:49', '2024-03-06 13:00:49', NULL),
(5, 'bright career school', 'global', '1234567890', 'bright@demo.com', 'testing', 'no_image_available.jpg', 10, 1, '2024-03-06 17:10:47', '2024-03-06 17:10:47', NULL),
(6, 'Learn mario', '12 France', '9123456789', 'learnmario@mxul.com', 'learn and grow', 'no_image_available.jpg', 14, 1, '2024-03-07 11:07:54', '2024-03-07 11:07:54', NULL),
(7, 'school', 'global', '1234567890', 'school@demo.com', 'testing', 'no_image_available.jpg', 23, 1, '2024-03-07 12:26:22', '2024-03-07 12:26:22', NULL),
(8, 'St. Peters School', 'Kosi colony', '1234567890', 'peters@demo.com', 'MXUL', 'no_image_available.jpg', 40, 1, '2024-03-09 10:33:33', '2024-03-09 10:33:33', NULL),
(9, 'School_1', '34 errty wert, erty', '2233445566', 'school_1@demo.com', 'bright future', 'no_image_available.jpg', 53, 1, '2024-03-28 14:26:58', '2024-03-28 14:30:40', '2024-03-28 14:30:40'),
(13, 'S.V.N. School', '123 wert, rtyyu', '1234567890', 'svnschool@demo.com', 'grow', 'school/6605408886e427.625020651711620232.png', 57, 1, '2024-03-28 14:33:52', '2024-03-28 14:34:40', NULL),
(14, 'abc', 'demo', '123', 'demo@schoo.com', 'demo', 'no_image_available.jpg', 58, 1, '2024-07-24 16:22:52', '2024-07-24 16:22:52', NULL),
(15, 'DYP', 'mumbai', '1234567890', 'schoolDyp@demo.com', 'We sucess', 'no_image_available.jpg', 60, 1, '2024-10-01 15:55:20', '2024-10-01 15:55:20', NULL);

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

--
-- Table structure for table `school_settings`
--

CREATE TABLE `school_settings` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `data` text NOT NULL,
  `type` varchar(191) DEFAULT NULL COMMENT 'datatype like string , file etc',
  `school_id` bigint(20) UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `school_settings`
--

INSERT INTO `school_settings` (`id`, `name`, `data`, `type`, `school_id`) VALUES
(1, 'school_name', 'UCGHSP', 'string', 1),
(2, 'school_email', 'admin@demo.com', 'string', 1),
(3, 'school_phone', '1234567890', 'number', 1),
(4, 'school_tagline', 'UCGHSP', 'string', 1),
(5, 'school_address', 'Global', 'string', 1),
(6, 'session_year', '1', 'number', 1),
(7, 'horizontal_logo', 'horizontal_logo.png', 'file', 1),
(8, 'vertical_logo', 'vertical_logo.png', 'file', 1),
(9, 'timetable_start_time', '09:00:00', 'time', 1),
(10, 'timetable_end_time', '18:00:00', 'time', 1),
(11, 'timetable_duration', '01:00:00', 'time', 1),
(12, 'auto_renewal_plan', '1', 'integer', 1),
(13, 'currency_code', 'INR', 'string', 1),
(14, 'currency_symbol', '₹', 'string', 1),
(15, 'school_name', 'UCGHSP', 'string', 2),
(16, 'school_email', 'ucghsp@demo.com', 'string', 2),
(17, 'school_phone', '1234567890', 'number', 2),
(18, 'school_tagline', 'UCGHSP', 'string', 2),
(19, 'school_address', 'Global', 'string', 2),
(20, 'session_year', '2', 'number', 2),
(21, 'horizontal_logo', 'horizontal_logo.png', 'file', 2),
(22, 'vertical_logo', 'vertical_logo.png', 'file', 2),
(23, 'timetable_start_time', '09:00:00', 'time', 2),
(24, 'timetable_end_time', '18:00:00', 'time', 2),
(25, 'timetable_duration', '01:00:00', 'time', 2),
(26, 'auto_renewal_plan', '1', 'integer', 2),
(27, 'currency_code', 'INR', 'string', 2),
(28, 'currency_symbol', '₹', 'string', 2),
(29, 'school_name', 'UCSP', 'string', 3),
(30, 'school_email', 'ucsp@demo.com', 'string', 3),
(31, 'school_phone', '1234567890', 'number', 3),
(32, 'school_tagline', 'UCSP', 'string', 3),
(33, 'school_address', 'global', 'string', 3),
(34, 'session_year', '3', 'number', 3),
(35, 'horizontal_logo', 'horizontal_logo.png', 'file', 3),
(36, 'vertical_logo', 'vertical_logo.png', 'file', 3),
(37, 'timetable_start_time', '09:00:00', 'time', 3),
(38, 'timetable_end_time', '18:00:00', 'time', 3),
(39, 'timetable_duration', '01:00:00', 'time', 3),
(40, 'auto_renewal_plan', '1', 'integer', 3),
(41, 'currency_code', 'INR', 'string', 3),
(42, 'currency_symbol', '₹', 'string', 3),
(43, 'school_name', 'demo', 'string', 4),
(44, 'school_email', 'demo@demo.com', 'string', 4),
(45, 'school_phone', '0987654321', 'number', 4),
(46, 'school_tagline', 'demo', 'string', 4),
(47, 'school_address', 'demo', 'string', 4),
(48, 'session_year', '4', 'number', 4),
(49, 'horizontal_logo', 'horizontal_logo.png', 'file', 4),
(50, 'vertical_logo', 'vertical_logo.png', 'file', 4),
(51, 'timetable_start_time', '09:00:00', 'time', 4),
(52, 'timetable_end_time', '18:00:00', 'time', 4),
(53, 'timetable_duration', '01:00:00', 'time', 4),
(54, 'auto_renewal_plan', '1', 'integer', 4),
(55, 'currency_code', 'INR', 'string', 4),
(56, 'currency_symbol', '₹', 'string', 4),
(57, 'school_name', 'bright career school', 'string', 5),
(58, 'school_email', 'bright@demo.com', 'string', 5),
(59, 'school_phone', '1234567890', 'number', 5),
(60, 'school_tagline', 'bright career school', 'string', 5),
(61, 'school_address', 'global', 'string', 5),
(62, 'session_year', '5', 'number', 5),
(63, 'horizontal_logo', 'horizontal_logo.png', 'file', 5),
(64, 'vertical_logo', 'vertical_logo.png', 'file', 5),
(65, 'timetable_start_time', '09:00:00', 'time', 5),
(66, 'timetable_end_time', '18:00:00', 'time', 5),
(67, 'timetable_duration', '01:00:00', 'time', 5),
(68, 'auto_renewal_plan', '1', 'integer', 5),
(69, 'currency_code', 'INR', 'string', 5),
(70, 'currency_symbol', '₹', 'string', 5),
(71, 'school_name', 'Learn mario', 'string', 6),
(72, 'school_email', 'learnmario@mxul.com', 'string', 6),
(73, 'school_phone', '9123456789', 'number', 6),
(74, 'school_tagline', 'Learn mario', 'string', 6),
(75, 'school_address', '12 France', 'string', 6),
(76, 'session_year', '6', 'number', 6),
(77, 'horizontal_logo', 'horizontal_logo.png', 'file', 6),
(78, 'vertical_logo', 'vertical_logo.png', 'file', 6),
(79, 'timetable_start_time', '09:00:00', 'time', 6),
(80, 'timetable_end_time', '18:00:00', 'time', 6),
(81, 'timetable_duration', '01:00:00', 'time', 6),
(82, 'auto_renewal_plan', '1', 'integer', 6),
(83, 'currency_code', 'INR', 'string', 6),
(84, 'currency_symbol', '₹', 'string', 6),
(85, 'school_name', 'school', 'string', 7),
(86, 'school_email', 'school@demo.com', 'string', 7),
(87, 'school_phone', '1234567890', 'number', 7),
(88, 'school_tagline', 'school', 'string', 7),
(89, 'school_address', 'global', 'string', 7),
(90, 'session_year', '7', 'number', 7),
(91, 'horizontal_logo', 'horizontal_logo.png', 'file', 7),
(92, 'vertical_logo', 'vertical_logo.png', 'file', 7),
(93, 'timetable_start_time', '09:00:00', 'time', 7),
(94, 'timetable_end_time', '18:00:00', 'time', 7),
(95, 'timetable_duration', '01:00:00', 'time', 7),
(96, 'auto_renewal_plan', '1', 'integer', 7),
(97, 'currency_code', 'INR', 'string', 7),
(98, 'currency_symbol', '₹', 'string', 7),
(99, 'school_name', 'St. Peters School', 'string', 8),
(100, 'school_email', 'peters@demo.com', 'string', 8),
(101, 'school_phone', '1234567890', 'number', 8),
(102, 'school_tagline', 'St. Peters School', 'string', 8),
(103, 'school_address', 'Kosi colony', 'string', 8),
(104, 'session_year', '9', 'number', 8),
(105, 'horizontal_logo', 'horizontal_logo.png', 'file', 8),
(106, 'vertical_logo', 'vertical_logo.png', 'file', 8),
(107, 'timetable_start_time', '09:00:00', 'time', 8),
(108, 'timetable_end_time', '18:00:00', 'time', 8),
(109, 'timetable_duration', '01:00:00', 'time', 8),
(110, 'auto_renewal_plan', '1', 'integer', 8),
(111, 'currency_code', 'INR', 'string', 8),
(112, 'currency_symbol', '₹', 'string', 8),
(113, 'school_name', 'School_1', 'string', 9),
(114, 'school_email', 'school_1@demo.com', 'string', 9),
(115, 'school_phone', '2233445566', 'number', 9),
(116, 'school_tagline', 'School_1', 'string', 9),
(117, 'school_address', '34 errty wert, erty', 'string', 9),
(118, 'session_year', '10', 'number', 9),
(119, 'horizontal_logo', 'horizontal_logo.png', 'file', 9),
(120, 'vertical_logo', 'vertical_logo.png', 'file', 9),
(121, 'timetable_start_time', '09:00:00', 'time', 9),
(122, 'timetable_end_time', '18:00:00', 'time', 9),
(123, 'timetable_duration', '01:00:00', 'time', 9),
(124, 'auto_renewal_plan', '1', 'integer', 9),
(125, 'currency_code', 'INR', 'string', 9),
(126, 'currency_symbol', '₹', 'string', 9),
(169, 'school_name', 'S.V.N. School', 'string', 13),
(170, 'school_email', 'svnschool@demo.com', 'string', 13),
(171, 'school_phone', '1234567890', 'number', 13),
(172, 'school_tagline', 'S.V.N. School', 'string', 13),
(173, 'school_address', '123 wert, rtyyu', 'string', 13),
(174, 'session_year', '14', 'number', 13),
(175, 'horizontal_logo', 'horizontal_logo.png', 'file', 13),
(176, 'vertical_logo', 'vertical_logo.png', 'file', 13),
(177, 'timetable_start_time', '09:00:00', 'time', 13),
(178, 'timetable_end_time', '18:00:00', 'time', 13),
(179, 'timetable_duration', '01:00:00', 'time', 13),
(180, 'auto_renewal_plan', '1', 'integer', 13),
(181, 'currency_code', 'INR', 'string', 13),
(182, 'currency_symbol', '₹', 'string', 13),
(183, 'school_name', 'abc', 'string', 14),
(184, 'school_email', 'demo@schoo.com', 'string', 14),
(185, 'school_phone', '123', 'number', 14),
(186, 'school_tagline', 'abc', 'string', 14),
(187, 'school_address', 'demo', 'string', 14),
(188, 'session_year', '15', 'number', 14),
(189, 'horizontal_logo', 'horizontal_logo.png', 'file', 14),
(190, 'vertical_logo', 'vertical_logo.png', 'file', 14),
(191, 'timetable_start_time', '09:00:00', 'time', 14),
(192, 'timetable_end_time', '18:00:00', 'time', 14),
(193, 'timetable_duration', '01:00:00', 'time', 14),
(194, 'auto_renewal_plan', '1', 'integer', 14),
(195, 'currency_code', 'INR', 'string', 14),
(196, 'currency_symbol', '₹', 'string', 14),
(197, 'school_name', 'DYP', 'string', 15),
(198, 'school_email', 'schoolDyp@demo.com', 'string', 15),
(199, 'school_phone', '1234567890', 'number', 15),
(200, 'school_tagline', 'DYP', 'string', 15),
(201, 'school_address', 'mumbai', 'string', 15),
(202, 'session_year', '16', 'number', 15),
(203, 'horizontal_logo', 'horizontal_logo.png', 'file', 15),
(204, 'vertical_logo', 'vertical_logo.png', 'file', 15),
(205, 'timetable_start_time', '09:00:00', 'time', 15),
(206, 'timetable_end_time', '18:00:00', 'time', 15),
(207, 'timetable_duration', '01:00:00', 'time', 15),
(208, 'auto_renewal_plan', '1', 'integer', 15),
(209, 'currency_code', 'INR', 'string', 15),
(210, 'currency_symbol', '₹', 'string', 15);

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

--
-- Table structure for table `sections`
--

CREATE TABLE `sections` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(512) NOT NULL,
  `school_id` bigint(20) UNSIGNED 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;

--
-- Dumping data for table `sections`
--

INSERT INTO `sections` (`id`, `name`, `school_id`, `created_at`, `updated_at`, `deleted_at`) VALUES
(1, 'section A', 1, '2024-03-06 13:41:27', '2024-03-06 13:41:27', NULL),
(2, 'section B', 1, '2024-03-06 13:41:35', '2024-03-06 13:41:35', NULL),
(3, 'section 2A', 1, '2024-03-06 13:41:47', '2024-03-06 13:41:47', NULL),
(4, 'section 2B', 1, '2024-03-06 13:41:56', '2024-03-06 13:41:56', NULL),
(5, 'section A', 5, '2024-03-07 08:28:08', '2024-03-07 08:28:08', NULL),
(6, 'section2', 5, '2024-03-07 08:58:41', '2024-03-07 08:58:41', NULL),
(7, '1 A', 2, '2024-03-07 11:33:03', '2024-03-07 11:33:03', NULL),
(8, '2B', 2, '2024-03-07 11:33:09', '2024-03-07 11:33:09', NULL),
(9, '3C', 2, '2024-03-07 11:33:15', '2024-03-07 11:33:15', NULL);

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

--
-- Table structure for table `semesters`
--

CREATE TABLE `semesters` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `start_month` tinyint(4) NOT NULL,
  `end_month` tinyint(4) NOT NULL,
  `school_id` bigint(20) UNSIGNED 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;

--
-- Dumping data for table `semesters`
--

INSERT INTO `semesters` (`id`, `name`, `start_month`, `end_month`, `school_id`, `created_at`, `updated_at`, `deleted_at`) VALUES
(1, 'First', 1, 6, 1, '2024-03-05 13:59:16', '2024-03-05 13:59:16', NULL),
(2, 'second', 7, 12, 1, '2024-03-06 13:46:09', '2024-03-06 13:46:09', NULL),
(3, 'First semester', 1, 6, 5, '2024-03-07 11:18:23', '2024-03-07 11:18:23', NULL),
(4, '1st', 1, 5, 2, '2024-03-07 11:40:01', '2024-03-07 11:40:01', NULL),
(5, '2nd', 7, 12, 2, '2024-03-07 11:40:13', '2024-03-07 11:40:13', NULL),
(6, 'second semester', 7, 12, 5, '2024-03-07 11:45:43', '2024-03-07 11:45:43', NULL);

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

--
-- Table structure for table `session_years`
--

CREATE TABLE `session_years` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(512) NOT NULL,
  `default` tinyint(4) NOT NULL DEFAULT 0,
  `start_date` date NOT NULL,
  `end_date` date NOT NULL,
  `school_id` bigint(20) UNSIGNED 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;

--
-- Dumping data for table `session_years`
--

INSERT INTO `session_years` (`id`, `name`, `default`, `start_date`, `end_date`, `school_id`, `created_at`, `updated_at`, `deleted_at`) VALUES
(1, '2024-25', 1, '2024-06-01', '2025-04-30', 1, '2024-03-05 11:48:53', '2024-03-06 15:02:50', NULL),
(2, '2022-23', 1, '2022-06-01', '2023-04-30', 2, '2024-03-05 11:51:09', '2024-03-05 11:51:09', NULL),
(3, '2022-23', 1, '2022-06-01', '2023-04-30', 3, '2024-03-06 12:55:24', '2024-03-06 12:55:24', NULL),
(4, '2022-23', 1, '2022-06-01', '2023-04-30', 4, '2024-03-06 13:00:49', '2024-03-06 13:00:49', NULL),
(5, '2022-23', 1, '2022-06-01', '2023-04-30', 5, '2024-03-06 17:10:47', '2024-03-06 17:10:47', NULL),
(6, '2022-23', 1, '2022-06-01', '2023-04-30', 6, '2024-03-07 11:07:54', '2024-03-07 11:07:54', NULL),
(7, '2022-23', 1, '2022-06-01', '2023-04-30', 7, '2024-03-07 12:26:22', '2024-03-07 12:26:22', NULL),
(8, '2025-2026', 0, '2025-06-06', '2026-03-05', 1, '2024-03-07 12:48:05', '2024-03-07 12:48:05', NULL),
(9, '2022-23', 1, '2022-06-01', '2023-04-30', 8, '2024-03-09 10:33:33', '2024-03-09 10:33:33', NULL),
(10, '2022-23', 1, '2022-06-01', '2023-04-30', 9, '2024-03-28 14:26:58', '2024-03-28 14:26:58', NULL),
(14, '2022-23', 1, '2022-06-01', '2023-04-30', 13, '2024-03-28 14:33:52', '2024-03-28 14:33:52', NULL),
(15, '2022-23', 1, '2022-06-01', '2023-04-30', 14, '2024-07-24 16:22:52', '2024-07-24 16:22:52', NULL),
(16, '2022-23', 1, '2022-06-01', '2023-04-30', 15, '2024-10-01 15:55:20', '2024-10-01 15:55:20', NULL);

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

--
-- Table structure for table `shifts`
--

CREATE TABLE `shifts` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `start_time` time NOT NULL,
  `end_time` time NOT NULL,
  `status` int(11) NOT NULL DEFAULT 1,
  `school_id` bigint(20) UNSIGNED 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;

--
-- Dumping data for table `shifts`
--

INSERT INTO `shifts` (`id`, `name`, `start_time`, `end_time`, `status`, `school_id`, `created_at`, `updated_at`, `deleted_at`) VALUES
(1, 'lunch', '10:00:00', '11:01:00', 1, 1, '2024-03-06 13:47:25', '2024-03-06 13:47:25', NULL),
(2, 'small break', '07:00:00', '07:20:00', 1, 1, '2024-03-06 13:47:51', '2024-03-06 13:47:51', NULL),
(3, 'hindi', '08:00:00', '09:00:00', 1, 1, '2024-03-06 13:49:06', '2024-03-06 13:49:06', NULL),
(4, 'first shift', '08:00:00', '09:00:00', 1, 5, '2024-03-07 11:19:00', '2024-03-07 11:19:00', NULL),
(5, 'morning', '08:30:00', '14:40:00', 1, 2, '2024-03-07 11:42:06', '2024-03-07 11:42:06', NULL),
(6, 'Evening', '15:45:00', '20:45:00', 1, 2, '2024-03-07 11:43:02', '2024-03-07 11:43:02', NULL),
(7, 'second shift', '09:00:00', '10:00:00', 1, 5, '2024-03-07 11:48:02', '2024-03-07 11:48:02', NULL),
(8, 'third shit', '11:00:00', '12:00:00', 1, 5, '2024-03-07 11:48:30', '2024-03-07 11:48:30', NULL);

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

--
-- Table structure for table `sliders`
--

CREATE TABLE `sliders` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `image` varchar(1024) NOT NULL,
  `link` varchar(191) DEFAULT NULL,
  `school_id` bigint(20) UNSIGNED NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `staffs`
--

CREATE TABLE `staffs` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` bigint(20) UNSIGNED NOT NULL,
  `qualification` varchar(512) DEFAULT NULL,
  `salary` double 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;

--
-- Dumping data for table `staffs`
--

INSERT INTO `staffs` (`id`, `user_id`, `qualification`, `salary`, `created_at`, `updated_at`) VALUES
(1, 4, 'PHD', 1500, '2024-03-05 13:53:42', '2024-03-05 13:53:42'),
(2, 7, 'pg', 5000, '2024-03-06 13:39:41', '2024-03-06 13:39:41'),
(3, 8, 'mca', 7000, '2024-03-06 13:40:45', '2024-03-06 13:40:45'),
(4, 9, 'B.tech', 100000, '2024-03-06 14:35:25', '2024-03-06 14:35:25'),
(5, 13, 'pg', 4000, '2024-03-07 08:56:44', '2024-03-07 08:56:44'),
(6, 16, 'M.tech', 40000, '2024-03-07 11:22:43', '2024-03-07 11:22:43'),
(7, 17, 'M.Sc', 450000, '2024-03-07 11:26:01', '2024-03-07 11:26:01'),
(8, 18, 'mca', 10000, '2024-03-07 11:39:15', '2024-03-07 11:39:15'),
(9, 19, NULL, 0, '2024-03-07 11:53:27', '2024-03-07 11:53:27'),
(10, 20, NULL, 0, '2024-03-07 11:55:19', '2024-03-07 11:55:19'),
(11, 24, NULL, 0, '2024-03-07 12:28:24', '2024-03-07 12:28:24'),
(12, 25, NULL, 0, '2024-03-07 12:29:13', '2024-03-07 12:29:13'),
(13, 26, NULL, 0, '2024-03-07 12:40:38', '2024-03-07 12:40:38'),
(14, 27, NULL, 0, '2024-03-07 12:42:33', '2024-03-07 12:42:33'),
(15, 28, NULL, 0, '2024-03-07 12:58:38', '2024-03-07 12:58:38'),
(16, 43, NULL, 0, '2024-03-09 10:34:03', '2024-03-09 10:34:03'),
(17, 59, NULL, 0, '2024-10-01 15:49:49', '2024-10-01 15:49:49'),
(18, 61, NULL, 0, '2024-10-01 16:04:02', '2024-10-01 16:04:02'),
(19, 62, 'mtech', 30000, '2024-10-01 16:08:00', '2024-10-01 16:08:00'),
(20, 63, 'Btech', 40000, '2024-10-01 16:16:01', '2024-10-01 16:16:01'),
(21, 64, 'Degreee', 2365421, '2024-10-01 16:26:30', '2024-10-01 16:26:30');

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

--
-- Table structure for table `staff_support_schools`
--

CREATE TABLE `staff_support_schools` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` bigint(20) UNSIGNED NOT NULL,
  `school_id` bigint(20) UNSIGNED NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `staff_support_schools`
--

INSERT INTO `staff_support_schools` (`id`, `user_id`, `school_id`, `created_at`, `updated_at`) VALUES
(1, 19, 2, '2024-03-07 11:53:27', '2024-03-07 11:53:27'),
(2, 20, 5, '2024-03-07 11:55:19', '2024-03-07 11:55:19'),
(3, 24, 7, '2024-03-07 12:28:24', '2024-03-07 12:28:24'),
(4, 25, 7, '2024-03-07 12:29:13', '2024-03-07 12:29:13'),
(5, 26, 7, '2024-03-07 12:40:38', '2024-03-07 12:40:38'),
(6, 27, 7, '2024-03-07 12:42:33', '2024-03-07 12:42:33'),
(7, 28, 7, '2024-03-07 12:58:38', '2024-03-07 12:58:38'),
(10, 43, 2, '2024-10-01 15:46:47', '2024-10-01 15:46:47'),
(11, 59, 1, '2024-10-01 15:49:49', '2024-10-01 15:49:49'),
(12, 61, 15, '2024-10-01 16:04:02', '2024-10-01 16:04:02');

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

--
-- Table structure for table `streams`
--

CREATE TABLE `streams` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `school_id` bigint(20) UNSIGNED 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;

--
-- Dumping data for table `streams`
--

INSERT INTO `streams` (`id`, `name`, `school_id`, `created_at`, `updated_at`, `deleted_at`) VALUES
(1, 'demo', 5, '2024-03-07 11:18:32', '2024-03-07 11:18:32', NULL),
(2, 'Arts', 2, '2024-03-07 11:40:46', '2024-03-07 11:40:46', NULL),
(3, 'Science', 2, '2024-03-07 11:40:52', '2024-03-07 11:40:52', NULL),
(4, 'Science Stream', 5, '2024-03-07 11:46:17', '2024-03-07 11:46:17', NULL),
(5, 'Commerce Stream', 5, '2024-03-07 11:46:40', '2024-03-07 11:46:40', NULL),
(6, 'Humanities Stream', 5, '2024-03-07 11:47:27', '2024-03-07 11:47:27', NULL);

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

--
-- Table structure for table `students`
--

CREATE TABLE `students` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` bigint(20) UNSIGNED NOT NULL,
  `class_section_id` bigint(20) UNSIGNED NOT NULL,
  `admission_no` varchar(512) NOT NULL,
  `roll_number` int(11) DEFAULT NULL,
  `admission_date` date NOT NULL,
  `school_id` bigint(20) UNSIGNED NOT NULL,
  `guardian_id` bigint(20) UNSIGNED NOT NULL,
  `session_year_id` bigint(20) UNSIGNED 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;

--
-- Dumping data for table `students`
--

INSERT INTO `students` (`id`, `user_id`, `class_section_id`, `admission_no`, `roll_number`, `admission_date`, `school_id`, `guardian_id`, `session_year_id`, `created_at`, `updated_at`, `deleted_at`) VALUES
(1, 12, 1, '2024-2511', 1, '2024-03-07', 1, 11, 1, '2024-03-07 08:40:01', '2024-03-07 08:40:01', NULL),
(2, 15, 3, '2022-2351', 1, '2021-03-04', 5, 11, 5, '2024-03-07 11:22:35', '2024-03-07 11:22:35', NULL),
(3, 22, 4, '2022-2321', 1, '2024-03-07', 2, 21, 2, '2024-03-07 11:55:23', '2024-03-07 11:55:23', NULL),
(4, 30, 3, '2022-2353', 2, '2024-03-07', 5, 29, 5, '2024-03-07 16:16:38', '2024-03-07 16:16:38', NULL),
(5, 31, 1, '2024-2512', 2, '2024-03-08', 1, 21, 1, '2024-03-08 00:13:28', '2024-03-08 00:13:28', NULL),
(6, 32, 2, '2024-2516', 1, '2021-09-02', 1, 11, 8, '2024-03-09 10:12:43', '2024-03-09 10:12:43', NULL),
(7, 33, 2, '2024-2517', 2, '1977-09-22', 1, 29, 1, '2024-03-09 10:17:27', '2024-03-09 10:17:27', NULL),
(8, 35, 1, '2024-2517', 3, '2024-03-09', 1, 34, 1, '2024-03-09 10:21:28', '2024-03-09 10:21:28', NULL),
(9, 36, 1, '2024-2519', 4, '1975-02-11', 1, 21, 8, '2024-03-09 10:23:25', '2024-03-09 10:23:25', NULL),
(10, 39, 2, '2024-25110', 3, '2024-03-01', 1, 11, 1, '2024-03-09 10:24:43', '2024-03-09 10:24:43', NULL),
(11, 42, 2, '2024-25111', 4, '2024-03-09', 1, 41, 1, '2024-03-09 10:33:55', '2024-03-09 10:33:55', NULL),
(12, 45, 1, '2024-25112', 5, '2024-03-09', 1, 44, 8, '2024-03-09 10:37:49', '2024-03-09 10:37:49', NULL),
(13, 46, 1, '2024-25111', 6, '1983-09-26', 1, 34, 1, '2024-03-09 10:40:06', '2024-03-09 10:40:06', NULL),
(14, 47, 1, '2024-25114', 7, '1996-10-23', 1, 11, 8, '2024-03-09 10:55:41', '2024-03-09 10:55:41', NULL),
(15, 48, 2, '2024-25115', 5, '2024-03-08', 1, 11, 8, '2024-03-09 12:38:07', '2024-03-09 12:38:07', NULL),
(16, 49, 2, '2024-25116', 6, '2024-03-08', 1, 34, 8, '2024-03-09 12:43:31', '2024-03-09 12:43:31', NULL),
(17, 51, 1, '2024-25117', 8, '2024-03-09', 1, 50, 1, '2024-03-09 13:18:19', '2024-03-09 13:18:19', NULL),
(18, 52, 2, '2024-25118', 7, '2024-03-11', 1, 41, 1, '2024-03-11 10:31:28', '2024-03-11 10:31:28', NULL);

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

--
-- Table structure for table `student_online_exam_statuses`
--

CREATE TABLE `student_online_exam_statuses` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `student_id` bigint(20) UNSIGNED NOT NULL COMMENT 'user_id',
  `online_exam_id` bigint(20) UNSIGNED NOT NULL,
  `status` tinyint(4) NOT NULL COMMENT '1 - in progress 2 - completed',
  `school_id` bigint(20) UNSIGNED 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;

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

--
-- Table structure for table `student_subjects`
--

CREATE TABLE `student_subjects` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `student_id` bigint(20) UNSIGNED NOT NULL COMMENT 'user_id',
  `class_subject_id` bigint(20) UNSIGNED NOT NULL,
  `class_section_id` bigint(20) UNSIGNED NOT NULL,
  `session_year_id` bigint(20) UNSIGNED NOT NULL,
  `school_id` bigint(20) UNSIGNED 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;

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

--
-- Table structure for table `subjects`
--

CREATE TABLE `subjects` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(512) NOT NULL,
  `code` varchar(64) DEFAULT NULL,
  `bg_color` varchar(32) NOT NULL,
  `image` varchar(512) NOT NULL,
  `medium_id` bigint(20) UNSIGNED NOT NULL,
  `type` varchar(64) NOT NULL COMMENT 'Theory / Practical',
  `school_id` bigint(20) UNSIGNED 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;

--
-- Dumping data for table `subjects`
--

INSERT INTO `subjects` (`id`, `name`, `code`, `bg_color`, `image`, `medium_id`, `type`, `school_id`, `created_at`, `updated_at`, `deleted_at`) VALUES
(1, 'English', '1', '#313273', 'subject/65e6e5bfdfb6b1.146862621709630911.jpg', 1, 'Theory', 1, '2024-03-05 13:58:31', '2024-03-05 13:58:31', NULL),
(2, 'Hindi Grammer', 'UMMUP', '#27367f', 'subject/65e833df468935.173767911709716447.jpeg', 2, 'Theory', 1, '2024-03-06 13:44:07', '2024-03-06 13:44:07', NULL),
(3, 'English grammer', 'UMMUM', '#d7daea', 'subject/65e834360236a6.786544051709716534.jpg', 1, 'Theory', 1, '2024-03-06 13:45:34', '2024-03-06 13:45:34', NULL),
(4, 'Hindi book', 'UMMUT', '#cd9f9f', 'subject/65e9631da01450.538621151709794077.jpeg', 4, 'Theory', 5, '2024-03-07 11:17:57', '2024-03-07 11:17:57', NULL),
(5, 'Math', 'KWE-067', '#2c1d1d', 'subject/65e967969d0455.356873741709795222.jpg', 6, 'Theory', 2, '2024-03-07 11:37:02', '2024-03-07 11:37:02', NULL),
(6, 'Sciencec', 'KUI-678', '#e57777', 'subject/65e96827d28ac9.716377701709795367.jpg', 6, 'Practical', 2, '2024-03-07 11:39:27', '2024-03-07 11:39:27', NULL),
(7, 'english Book – 19 September 2019', 'UMMUPZ', '#e67676', 'subject/65e9694678ddf6.199905591709795654.jpeg', 3, 'Theory', 5, '2024-03-07 11:44:14', '2024-03-07 11:44:14', NULL);

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

--
-- Table structure for table `subject_teachers`
--

CREATE TABLE `subject_teachers` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `class_section_id` bigint(20) UNSIGNED NOT NULL,
  `subject_id` bigint(20) UNSIGNED NOT NULL,
  `teacher_id` bigint(20) UNSIGNED NOT NULL COMMENT 'user_id',
  `class_subject_id` bigint(20) UNSIGNED NOT NULL,
  `school_id` bigint(20) UNSIGNED 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;

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

--
-- Table structure for table `subscriptions`
--

CREATE TABLE `subscriptions` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `school_id` bigint(20) UNSIGNED NOT NULL,
  `package_id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `student_charge` double(8,4) NOT NULL,
  `staff_charge` double(8,4) NOT NULL,
  `start_date` date NOT NULL,
  `end_date` date NOT NULL,
  `billing_cycle` 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;

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

--
-- Table structure for table `subscription_bills`
--

CREATE TABLE `subscription_bills` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `subscription_id` bigint(20) UNSIGNED NOT NULL,
  `description` varchar(191) DEFAULT NULL,
  `amount` double(8,4) NOT NULL,
  `total_student` bigint(20) NOT NULL,
  `total_staff` bigint(20) NOT NULL,
  `payment_transaction_id` bigint(20) UNSIGNED DEFAULT NULL,
  `due_date` date NOT NULL,
  `school_id` bigint(20) UNSIGNED NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `subscription_features`
--

CREATE TABLE `subscription_features` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `subscription_id` bigint(20) UNSIGNED NOT NULL,
  `feature_id` bigint(20) UNSIGNED NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `system_settings`
--

CREATE TABLE `system_settings` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `name` varchar(191) NOT NULL,
  `data` text NOT NULL,
  `type` varchar(191) DEFAULT NULL COMMENT 'datatype like string , file etc'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Dumping data for table `system_settings`
--

INSERT INTO `system_settings` (`id`, `name`, `data`, `type`) VALUES
(1, 'time_zone', 'Asia/Kolkata', 'string'),
(2, 'date_format', 'd-m-Y', 'date'),
(3, 'time_format', 'h:i A', 'time'),
(4, 'theme_color', '#22577A', 'string'),
(5, 'session_year', '1', 'string'),
(6, 'system_version', '1.1.1', 'string'),
(7, 'email_verified', '1', 'string'),
(8, 'subscription_alert', '7', 'integer'),
(9, 'currency_code', 'USD', 'string'),
(10, 'currency_symbol', '$', 'string'),
(11, 'additional_billing_days', '', 'integer'),
(12, 'system_name', 'MXUL', 'string'),
(13, 'address', 'Global', 'string'),
(14, 'billing_cycle_in_days', '', 'integer'),
(15, 'current_plan_expiry_warning_days', '', 'integer'),
(16, 'tag_line', 'Education for a Brighter Tomorrow', 'string'),
(17, 'mobile', '9903909333', 'string'),
(38, 'front_site_theme_color', '#e9f9f3', 'text'),
(39, 'primary_color', '#3ccb9b', 'text'),
(40, 'secondary_color', '#245a7f', 'text'),
(41, 'short_description', 'testing', 'text'),
(42, 'facebook', 'https://school.atharvatek.com/', 'text'),
(43, 'instagram', 'https://school.atharvatek.com/', 'text'),
(44, 'linkedin', 'https://school.atharvatek.com/', 'text'),
(45, 'footer_text', '', 'text'),
(62, 'favicon', '//65e853c33c76d9.775512411709724611.png', 'file'),
(74, 'login_page_logo', '//665b290c45ffb4.945924221717250316.png', 'file'),
(87, 'horizontal_logo', '//665b290c412ee1.660455001717250316.png', 'file'),
(88, 'vertical_logo', '//665b290c44a152.366979991717250316.png', 'file'),
(104, 'mail_mailer', 'smtp', 'string'),
(105, 'mail_host', 'mail.mimeld.com', 'string'),
(106, 'mail_port', '465', 'string'),
(107, 'mail_username', 'info@mimeld.com', 'string'),
(108, 'mail_password', 'Coder_$321', 'string'),
(109, 'mail_encryption', 'ssl', 'string'),
(110, 'mail_send_from', 'info@mimeld.com', 'string');

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

--
-- Table structure for table `timetables`
--

CREATE TABLE `timetables` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `subject_teacher_id` bigint(20) UNSIGNED DEFAULT NULL,
  `class_section_id` bigint(20) UNSIGNED NOT NULL,
  `subject_id` bigint(20) UNSIGNED DEFAULT NULL,
  `start_time` time NOT NULL,
  `end_time` time NOT NULL,
  `note` varchar(1024) DEFAULT NULL,
  `day` enum('Monday','Tuesday','Wednesday','Thursday','Friday','Saturday','Sunday') NOT NULL,
  `type` enum('Lecture','Break') NOT NULL,
  `semester_id` bigint(20) UNSIGNED DEFAULT NULL,
  `school_id` bigint(20) UNSIGNED NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

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

--
-- Table structure for table `users`
--

CREATE TABLE `users` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `first_name` varchar(128) NOT NULL,
  `last_name` varchar(128) NOT NULL,
  `mobile` varchar(191) DEFAULT NULL,
  `email` varchar(191) NOT NULL,
  `password` varchar(191) NOT NULL,
  `gender` varchar(16) DEFAULT NULL,
  `image` varchar(512) DEFAULT NULL,
  `dob` date DEFAULT NULL,
  `current_address` varchar(191) DEFAULT NULL,
  `permanent_address` varchar(191) DEFAULT NULL,
  `occupation` varchar(128) DEFAULT NULL,
  `status` tinyint(4) NOT NULL DEFAULT 1,
  `reset_request` tinyint(4) NOT NULL DEFAULT 0,
  `fcm_id` varchar(1024) DEFAULT NULL,
  `school_id` bigint(20) UNSIGNED DEFAULT NULL,
  `remember_token` varchar(100) DEFAULT NULL,
  `email_verified_at` timestamp NULL DEFAULT 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;

--
-- Dumping data for table `users`
--

INSERT INTO `users` (`id`, `first_name`, `last_name`, `mobile`, `email`, `password`, `gender`, `image`, `dob`, `current_address`, `permanent_address`, `occupation`, `status`, `reset_request`, `fcm_id`, `school_id`, `remember_token`, `email_verified_at`, `created_at`, `updated_at`, `deleted_at`) VALUES
(1, 'super', 'admin', NULL, 'mira@mxul.com', '$2y$10$ZBjkO/BN23HRx9GsFr7jKOgVj7R5JU.lefvBhqeSgc.x9.xZG0XLe', 'male', 'user/65e977a4ee15f6.799953731709799332.jpg', '1990-02-10', 'Global', 'Global', NULL, 1, 0, NULL, NULL, NULL, NULL, '2023-11-25 07:38:41', '2024-06-13 08:16:05', NULL),
(2, 'admin', 'demo', '1234567890', 'admin@demo.com', '$2y$10$pIbvE.Sp.MHGuBIw0pg2Z.qGxKIit288uvy7oKH27qMg6IXhM5BZC', 'male', 'user/65e8533c0c7089.662250671709724476.jpeg', '1970-01-01', 'testing', 'testing', NULL, 1, 0, NULL, 1, NULL, NULL, '2024-03-05 11:48:53', '2024-03-07 11:54:42', NULL),
(3, 'Eva', 'mary', '1234567890', 'school2@demo.com', '$2y$10$w3fPuOyZ7oxe9fh2F1kPvu8EVegHaIG3kil9ehuYKxSHeG6PzhIC.', 'male', 'dummy_logo.jpg', '1970-01-01', '123 rtyui', '123 rtyu', NULL, 1, 0, NULL, 2, NULL, NULL, '2024-03-05 11:51:09', '2024-03-07 11:47:20', NULL),
(4, 'Johnson', 'David', '1234567890', 'teacher@demo.com', '$2y$10$D1pJI8b6XXZgngZsTRqs5uFr4MWvYBO/VoD1W3q6/CxahpBQL/FvO', 'male', 'user/65e6e49e8089e9.668836901709630622.jpg', '1990-02-14', 'USA', 'USA', NULL, 1, 0, NULL, 1, NULL, NULL, '2024-03-05 13:53:42', '2024-03-07 08:17:52', NULL),
(5, 'Catarina', 'demo', '1234567890', 'catarina@demo.com', '$2y$10$VMSO540kNElGemF9O9.D4.hBAZxfsejhrAJpOBV1AC12Wmue3J2ha', NULL, 'dummy_logo.jpg', NULL, NULL, NULL, NULL, 1, 0, NULL, 3, NULL, NULL, '2024-03-06 12:55:24', '2024-03-06 14:00:42', NULL),
(6, 'demo', 'demo', '1234', 'demo@demo.com', '$2y$10$Q7tRO55sl.k74p..PZnfauASXB5W8ygPIOpZ1d3n29YVmUzloomuO', NULL, 'dummy_logo.jpg', NULL, NULL, NULL, NULL, 1, 0, NULL, 4, NULL, NULL, '2024-03-06 13:00:49', '2024-03-06 13:01:51', NULL),
(7, 'Aisha', 'Aisha', '1234567890', 'teacher2@demo.com', '$2y$10$ET.MHxQFZFLjbgmeRPXKHeYAuIA4HgGMQkxy5wHd71yDhK/DhsZFW', 'female', NULL, '2024-03-04', 'global', 'global', NULL, 1, 0, NULL, 1, NULL, NULL, '2024-03-06 13:39:41', '2024-03-06 14:37:47', NULL),
(8, 'Leila', 'Leila', '0987654321', 'teacher4@demo.com', '$2y$10$6Kku.REsKhe7CxuiDv7D9.SYJVALOYz0lZReRvTu1nRn6LPOyVfOe', 'female', 'user/65e83315177c65.085355411709716245.jpeg', '2009-02-02', 'global', 'global', NULL, 1, 0, NULL, 1, NULL, NULL, '2024-03-06 13:40:45', '2024-03-06 14:37:28', NULL),
(9, 'Sam', 'Willson', '9911223344', 'sam@teacher.com', '$2y$10$RPUfB.K8Sejct5KtIcU32.rwzbg/rVKFA9WYW1ua6lZVL1K1hQrXi', 'male', 'user/65e83fe526a655.752896981709719525.jpg', '2000-02-08', 'qwert12', 'qwer12', NULL, 1, 0, NULL, 1, NULL, NULL, '2024-03-06 14:35:25', '2024-03-06 14:37:39', NULL),
(10, 'monalik', 'demo', '1234567890', 'school@demo.com', '$2y$10$UJfACe6IBSSfhljetyrgIOwKmomQg6tQLJVLss8vvRxSkaTEHuSya', 'female', 'user/65e864969006d8.411845291709728918.jpeg', '1970-01-01', 'global', 'global', NULL, 1, 0, NULL, 5, NULL, NULL, '2024-03-06 17:10:47', '2024-03-07 11:43:02', NULL),
(11, 'guardian', 'guardian', '1234567890', 'guardian@demo.com', '$2y$10$8WzhAW55xKVKHdy1wu7TAOXsLBn6X.Ym7PVHT/gIls5quFRhZmY/e', 'female', 'guardian/65e9649d94c7f7.995201881709794461.jpg', NULL, NULL, NULL, NULL, 1, 0, '', NULL, NULL, NULL, '2024-03-07 08:40:01', '2024-03-09 10:24:43', NULL),
(12, 'student', 'demo', '1234567890', 'student@demo.com', '$2y$10$8AKiiGbEBiA8jQDmWPa12u31RAB6wXgxyaXZ0ZNXazxF8Q2.bE7RG', 'male', 'user/65e93e19d21be7.385929241709784601.jpeg', '2024-03-04', 'global', 'global', NULL, 1, 1, NULL, 1, NULL, NULL, '2024-03-07 08:40:01', '2024-03-09 09:00:38', NULL),
(13, 'teacher', 'demo', '1234567890', 'teacher7@demo.com', '$2y$10$JNki5.wAKpf1u7VTTlo3Me4z.T9I9NkkUb0PsR4sUYPxXKvZrWcf6', 'male', 'user/65e964f8b133f5.373906501709794552.jpeg', '2024-03-04', 'global', 'global', NULL, 1, 0, NULL, 5, NULL, NULL, '2024-03-07 08:56:44', '2024-03-07 11:25:52', NULL),
(14, 'Mister', 'Admin', '9876543210', 'misteradmin@mxul.com', '$2y$10$KGoV4pOuKo8861Bv3VVNBuUvJZRN.E/jEemMbzOaQEc5sVmmjYc4a', NULL, 'dummy_logo.jpg', NULL, NULL, NULL, NULL, 1, 0, NULL, 6, NULL, NULL, '2024-03-07 11:07:54', '2024-03-07 11:07:54', NULL),
(15, 'Michael Johnson', 'demo', '1234567890', '2022-2351', '$2y$10$0ZKkSHE3MludFchSSJQuVeEkv9mMUzVelpAfv0dJtiOh/3nrxTMkG', 'male', 'user/65e96433588bb4.946245971709794355.png', '2024-03-05', 'global', 'global', NULL, 1, 0, NULL, 5, NULL, NULL, '2024-03-07 11:22:35', '2024-03-07 11:23:21', NULL),
(16, 'Math', 'Teacher', '9988667755', 'mathteacher@demo.com', '$2y$10$k.hcXkgdf3LEXw7o56qn2u/BiY9XPC/4aw/VEusU4bZZDABQ4jNq6', 'male', 'user/65e9643b06f001.507118891709794363.jpg', '1997-09-29', 'qwer12 2rt', 'qwer12 2rt', NULL, 1, 0, NULL, 2, NULL, NULL, '2024-03-07 11:22:43', '2024-03-07 11:26:16', NULL),
(17, 'Science', 'Teacher', '9988776655', 'scienceteacher@mxul.com', '$2y$10$PdqBsh6keJZIxJGkZrb8keB8.A1bDvXVYFwdfADBqzp1SVpGMgNIO', 'female', 'user/65e96501cdd760.957628521709794561.jpg', '1997-09-19', '123 qwerty', '123 qwerty', NULL, 1, 0, NULL, 2, NULL, NULL, '2024-03-07 11:26:01', '2024-03-07 11:26:12', NULL),
(18, 'Emily', 'Brown', '1234567890', 'emily@demo.com', '$2y$10$C5DRCjQCs66.v.3U7Ymy7O1ccKFJofPeQ5nlpUs4Za3HjZW8d9HNq', 'female', 'user/65e9681b6594e1.485127971709795355.jpeg', '2024-03-03', 'global', 'global', NULL, 1, 0, NULL, 5, NULL, NULL, '2024-03-07 11:39:15', '2024-03-07 11:39:26', NULL),
(19, 'noriam', 'liata', '1234567890', 'student56@demo.com', '$2y$10$x7UA75cEn1LyG1n7ax0Q8ehBCAUPI8sRWlhgDENHM2PIDxkzZ5nTW', NULL, 'user/65e96b6fd93f33.508826581709796207.jpeg', NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, NULL, NULL, '2024-03-07 11:53:27', '2024-03-07 11:53:27', NULL),
(20, 'monikat', 'lkhk', '1234567890', 'monikat@demo.com', '$2y$10$zMQWHQry7T3i1vFIEK4EG.cIK6zPiBm11K6dq1e/LYYJi.QUNEWCG', NULL, 'user/65e96bdfe09f61.311072921709796319.jpeg', NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, NULL, NULL, '2024-03-07 11:55:19', '2024-03-07 11:55:19', NULL),
(21, 'Ben', 'Parker', '9876543212', 'guardian1@demo.com', '$2y$10$ZEG3l6iX8aHtvICMHQ9vqemXxMtdsk9VSC5SSt5VlzDhU03Gbaws6', 'female', 'guardian/65e96be2ef2d80.288423751709796322.jpg', NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, NULL, NULL, '2024-03-07 11:55:23', '2024-03-09 10:23:24', NULL),
(22, 'Allan', 'Parker', '1234567898', '2022-2321', '$2y$10$Nk.qJEwo3H3HjO1dd3No8uBR2BeNNL/qTv8NIORMn91q3MebYkHG6', 'male', 'user/65e96be3260131.745643811709796323.jpg', '2001-03-14', '34 rtyui', '34 rtyui', NULL, 1, 0, NULL, 2, NULL, NULL, '2024-03-07 11:55:23', '2024-03-07 11:56:31', NULL),
(23, 'school', 'admin', '1234567890', 'schooladmin@demo.com', '$2y$10$8WzhAW55xKVKHdy1wu7TAOXsLBn6X.Ym7PVHT/gIls5quFRhZmY/e', NULL, 'dummy_logo.jpg', NULL, NULL, NULL, NULL, 1, 0, NULL, 7, NULL, NULL, '2024-03-07 12:26:22', '2024-03-07 12:37:15', NULL),
(24, 'teacher', 'demo', '1234567890', 'teacherschool@demo.com', '$2y$10$8BXLDrwc8epssVqCRoks9O0xh3cdJw/feCiXmSqXQbChjiICciR8e', NULL, 'user/65e973a036c818.765518531709798304.jpeg', NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, NULL, NULL, '2024-03-07 12:28:24', '2024-03-07 12:28:24', NULL),
(25, 'student', 'demo', '1234567890', 'student1@demo.com', '$2y$10$8AKiiGbEBiA8jQDmWPa12u31RAB6wXgxyaXZ0ZNXazxF8Q2.bE7RG', NULL, 'user/65e973d105b8e6.002258921709798353.jpeg', NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, NULL, NULL, '2024-03-07 12:29:13', '2024-03-07 12:29:13', NULL),
(26, 'teacher12', 'demo', '1234567890', 'teacherdemo@demo.com', '$2y$10$FmAkt71EUYCHEcHwwsH2guzjVawYNVm2TRsqflJuLpPpTuRXNVN7G', NULL, 'user/65e9767eacd3c3.123254321709799038.jpeg', NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, NULL, NULL, '2024-03-07 12:40:38', '2024-03-07 12:40:38', NULL),
(27, 'teacher12', 'demo', '1234567890', 'teacher@school.com', '$2y$10$pEdSkUk/EgnymwA87yAZ3Oyp7.HdX2aPzKRhwCUGrauWzj1SOOAFC', NULL, 'user/65e976f08557f6.934452761709799152.jpg', NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, NULL, NULL, '2024-03-07 12:42:33', '2024-03-07 12:42:33', NULL),
(28, 'teacher32', 'demo', '1234567890', 'teacher@gmail.com', '$2y$10$GzvMfgEudtStRzgR/yeSc.rHrxA6P9WfvSvdt/VErbA/HFOIqfn7.', NULL, 'user/65e97ab6ae4173.177609931709800118.jpeg', NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, NULL, NULL, '2024-03-07 12:58:38', '2024-03-07 12:58:38', NULL),
(29, 'guardian12', 'demo', '1234567890', 'guardian@gmail.com', '$2y$10$h6xZPwJ.lFHh8qxzuQfIh.B0R77cJUj1DPCvh4i5o7a3D4xWE.zmW', 'female', 'guardian/65e9a91eb8ea87.958019341709811998.jpeg', NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, NULL, NULL, '2024-03-07 16:16:38', '2024-03-09 10:17:27', NULL),
(30, 'student1', 'demo', '1234567890', '2022-2353', '$2y$10$hkihyQ/Jbm3B/1ZGfUoEZuS/FSV9w5lsb2IFsSmuTyjA.nGse3fcK', 'male', 'user/65e9a91ede29f8.541132021709811998.jpeg', '2000-03-05', 'global', 'global', NULL, 0, 0, NULL, 5, NULL, NULL, '2024-03-07 16:16:38', '2024-03-07 16:16:38', '0000-00-00 00:00:00'),
(31, 'Student', '2', '9876543211', '2024-2512', '$2y$10$bnEs.nWygctYZXSut8PyP.h60RrcUoWELvH8PmIgrIz4YDCR0V8yy', 'female', NULL, '1990-02-13', 'Swabhumi, West bangal', 'Swabhumi, West Bangal', NULL, 1, 0, NULL, 1, NULL, NULL, '2024-03-08 00:13:28', '2024-03-08 00:20:38', NULL),
(32, 'Mia', 'Knox', '51', 'hilihivibu@mailinator.com', '$2y$10$44xUnxBYfMqslBDWJPIq3.vNtSx0IprW9Ndl.5mqkJPqmaN3ztuSu', 'male', 'user/65ebf6d3abe611.515381401709962963.png', '1970-01-01', 'Animi doloremque ne', 'Et recusandae Quis', NULL, 0, 0, NULL, 1, NULL, NULL, '2024-03-09 10:12:43', '2024-03-09 10:12:43', '0000-00-00 00:00:00'),
(33, 'Petra', 'Small', '123456789', 'vishal@demo.com', '$2y$10$No7E17ghpetG7fb0pQMzNOVdrkXC1TGld6wcOwDIZ7GDg3jDjs.pu', 'male', NULL, '1970-01-01', 'Esse aperiam illo ev', 'Saepe voluptatum par', NULL, 1, 0, NULL, 1, NULL, NULL, '2024-03-09 10:17:27', '2024-03-09 11:01:01', NULL),
(34, 'guardian23', '23', '9876543210', 'guardian23@demo.com', '$2y$10$G7LExuU5PKy6aK.GujipN.S9S3xPYL45M1IK15aY4Tx1YBpj6Wy.q', 'female', NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, NULL, NULL, '2024-03-09 10:21:28', '2024-03-09 10:40:06', NULL),
(35, 'student', '23', '9876543211', 'student23@demo.com', '$2y$10$ZIJkwwzEYluAr1drCw6m3uiWB78X72zU/hK.6YapfAAZdcQasHS5i', 'male', NULL, '2012-12-12', 'lucknow', 'lucknow', NULL, 0, 0, NULL, 1, NULL, NULL, '2024-03-09 10:21:28', '2024-03-09 10:21:28', '0000-00-00 00:00:00'),
(36, 'Dominique', 'Wynn', '65', 'leno@mailinator.com', '$2y$10$HJnHYpDSCxKdP0C/AjOG7eNjACtptXe1a5X2ZpEqMOh/b6yj9Pf6C', 'female', NULL, '2024-03-07', 'Aut esse nostrud exc', 'Laboriosam porro do', NULL, 0, 0, NULL, 1, NULL, NULL, '2024-03-09 10:23:25', '2024-03-09 10:23:25', '0000-00-00 00:00:00'),
(39, 'Maxwell', 'Lynch', '07979905454', 'vishals@demo.com', '$2y$10$JOHT5GdUr64sAzFAtUySu.gZU.lWVExuXs7H3LQeJ5MIlazeHJCuO', 'male', NULL, '1970-01-01', 'RANA PRATAP GALLI\r\nNEAR GOUSALA\r\nJUGSALAI', 'RANA PRATAP GALLI\r\nNEAR GOUSALA\r\nJUGSALAI', NULL, 0, 0, NULL, 1, NULL, NULL, '2024-03-09 10:24:43', '2024-03-09 10:24:43', '0000-00-00 00:00:00'),
(40, 'Sufi', 'Sana', '1234567890', 'sufi@demo.com', '$2y$10$z19vqyWKMcpA4v0gFTS92uUSAgPbbqSbM/97Onq0G5ilT5jG0Pr0G', NULL, 'dummy_logo.jpg', NULL, NULL, NULL, NULL, 1, 0, NULL, 8, NULL, NULL, '2024-03-09 10:33:33', '2024-03-09 10:33:33', NULL),
(41, 'sakshi', 'maurya', '9876543111', 'sakshi353@demo.com', '$2y$10$GNyvJqxFieCrFNwT/MqwSOGzw9bwi6FQc2xVJFffJq/sMIfwUh.0u', 'female', NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, NULL, NULL, '2024-03-09 10:33:55', '2024-03-09 13:09:54', NULL),
(42, 'student80', 'maurya', '9876543111', 'sakshi353m@gmail.com', '$2y$10$orutzzf522hMQaIocrM23eTd8hiczwyRRNCbEJyXoLtFFDelk17dG', 'female', NULL, '2003-05-03', 'lucknow', 'lucknow', NULL, 1, 1, NULL, 1, NULL, NULL, '2024-03-09 10:33:55', '2024-03-09 10:39:57', NULL),
(43, 'student34', 'demo', '1234567890', 'student11@demo.com', '$2y$10$WDva/.ynkW3xgXLWhbFFHO/CN68fhyv2DxZOKFLC/IFxBAbQRLTcC', NULL, 'user/65ebfbd371b123.258017281709964243.jpg', NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, NULL, NULL, '2024-03-09 10:34:03', '2024-10-01 15:46:47', NULL),
(44, 'guardian23', 'demo', '1234567890', 'g@demo.com', '$2y$10$gphU.vykitQxEEU5s.EG5ej6SyVjgFlg9uGfGKZWpqsiAK96EuxQi', 'female', NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, 1, NULL, NULL, '2024-03-09 10:37:49', '2024-03-09 10:37:49', NULL),
(45, 'sarita', 'demo', '1234567890', 'sarita@gmail.com', '$2y$10$vd4yql3eswtBiiISeSKUuOfieJtwHaLPn/1IMnvUFsWbwHnveAK6a', 'male', NULL, '2024-03-07', 'testing', 'global', NULL, 0, 0, NULL, 1, NULL, NULL, '2024-03-09 10:37:49', '2024-03-09 10:37:49', '0000-00-00 00:00:00'),
(46, 'Macaulay', 'Sparks', '9876543210', 'd', '$2y$10$8AKiiGbEBiA8jQDmWPa12u31RAB6wXgxyaXZ0ZNXazxF8Q2.bE7RG', 'male', NULL, '2024-03-01', 'Optio vel non repre', 'Eaque placeat delec', NULL, 1, 0, NULL, 1, NULL, NULL, '2024-03-09 10:40:06', '2024-03-09 12:04:50', NULL),
(47, 'Daquan', 'Ingram', '7979905454', 'vrishalkc2303@gmail.com', '$2y$10$B9euBafAE1XueeiJ2xDWGeezuVY2JoaMkUYiB72rwmhATIs5ioNKO', 'male', NULL, '2024-03-01', 'RANA PRATAP GALLI\r\nNEAR GOUSALA\r\nJUGSALAI', 'RANA PRATAP GALLI\r\nNEAR GOUSALA\r\nJUGSALAI', NULL, 0, 0, NULL, 1, NULL, NULL, '2024-03-09 10:55:41', '2024-03-09 10:55:41', '0000-00-00 00:00:00'),
(48, 'vishal', 'Austin', '7979905454', 'vishalkc2303@gmail.com', '$2y$10$NwZ3fs8f40beMiirnPMZTO8Sh/M1WLRyzED6lG5vFlYKGvBAMUD7O', 'female', NULL, '2024-03-01', 'RANA PRATAP GALLI\r\nNEAR GOUSALA\r\nJUGSALAI', 'RANA PRATAP GALLI\r\nNEAR GOUSALA\r\nJUGSALAI', NULL, 1, 0, NULL, 1, NULL, NULL, '2024-03-09 12:38:07', '2024-03-09 12:39:06', NULL),
(49, 'vikash', 'Barrett', '7979905454', 'bishalkc2303@gmail.com', '$2y$10$oh7iIlusEO8c7zd8NLMMneh3GAvz7Dp.1SkUnd2v/M1hKFSu3k.se', 'female', NULL, '2024-03-01', 'RANA PRATAP GALLI\r\nNEAR GOUSALA\r\nJUGSALAI', 'RANA PRATAP GALLI\r\nNEAR GOUSALA\r\nJUGSALAI', NULL, 1, 0, NULL, 1, NULL, NULL, '2024-03-09 12:43:31', '2024-03-09 12:43:53', NULL),
(50, 'guardian123', 'demo', '1234567890', 'g@gmail.com', '$2y$10$oXJ/OAE9H3zeMoTI2azeTeW/qU6hZmjG5Zg457tEiH2.ATwCpmy76', 'female', 'guardian/65ec2252c7d6d4.797523901709974098.jpg', NULL, NULL, NULL, NULL, 1, 0, NULL, 1, NULL, NULL, '2024-03-09 13:18:18', '2024-03-09 13:18:18', NULL),
(51, 'navya', 'demo', '1234567890', 'navya@demo.com', '$2y$10$kQhgDXLCm/2FqKeyZou.aO8eBfnN3Kdqod9RQLpqy5Hrg8AoCEPLu', 'male', 'user/65ec2253076e84.391271651709974099.jpeg', '2024-03-04', 'global', 'global', NULL, 1, 0, NULL, 1, NULL, NULL, '2024-03-09 13:18:19', '2024-03-09 13:19:05', NULL),
(52, 'akansha', 'rai', '98765432111', 'aakansha80100@gmail.com', '$2y$10$TjCm.4.Z1PovDQETPcu7uOH8AFiBfihvds.mGEjHji7k/O133qzLO', 'female', NULL, '2003-03-09', 'delhi', 'delhi', NULL, 1, 0, NULL, 1, NULL, NULL, '2024-03-11 10:31:28', '2024-03-11 10:36:07', NULL),
(53, 'Kevin', 'Fiegy', '9988776655', 'kevin@demo.com', '$2y$10$NFIkvhAkfCMZx6Qf2SAVDetwupIc.1ERJ2qZ89na4VOeM6QyHpSTC', NULL, 'dummy_logo.jpg', NULL, NULL, NULL, NULL, 1, 0, NULL, 9, NULL, NULL, '2024-03-28 14:26:58', '2024-03-28 14:26:58', NULL),
(57, 'Mister', 'School', '1234567890', 'misterschool@demo.com', '$2y$10$bmua.AUxJVOCm4odDebHLum4/140FZjt/VGpHGgP4pJnBVBBQLUTS', NULL, 'user/6605408899ad73.766752961711620232.png', NULL, NULL, NULL, NULL, 1, 0, NULL, 13, NULL, NULL, '2024-03-28 14:33:52', '2024-03-28 14:33:52', NULL),
(58, 'demo', 'user', '123', 'demo@admin.com', '$2y$10$uIxXBt7h0BfwXUJuHIdfCOQo4ddR1DJR9vTjMVbVNBF9R0MjX02WC', NULL, 'dummy_logo.jpg', NULL, NULL, NULL, NULL, 1, 0, NULL, 14, NULL, NULL, '2024-07-24 16:22:52', '2024-07-24 16:22:52', NULL),
(59, 'Dwyane', 'Johnson', '1122334455', 'teacher11@demo.com', '$2y$10$aEVFn9DFRoKfPMdYMAYyr.kXdUFO//bdLvDQKjlksjKxl47N3yrzW', NULL, NULL, NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, NULL, NULL, '2024-10-01 15:49:49', '2024-10-01 15:49:49', NULL),
(60, 'Ram', 'Singh', '112233445566', 'teacher12@demo.com', '$2y$10$sAPjYjWsNdTBONqA/75nKeE2ibvqQZNGVchkAeroeo/BmD.WwzRGq', 'male', 'dummy_logo.jpg', '1970-01-01', 'mumbai', 'mumbai', NULL, 1, 0, NULL, 15, NULL, NULL, '2024-10-01 15:55:20', '2024-10-01 16:16:35', NULL),
(61, 'Dwyane', 'Johnson', '1234567890', 'teacher13@demo.com', '$2y$10$AsR0U48I7sdeQWxXG6WtS.ORW..jJ4CcqYLNbnOqsb2wKKHz2VhG.', NULL, 'user/66fbec3ac3f999.423869171727786042.png', NULL, NULL, NULL, NULL, 1, 0, NULL, NULL, NULL, NULL, '2024-10-01 16:04:02', '2024-10-01 16:04:02', NULL),
(62, 'alax', 'lopez', '1234567890', 'teacher14@demo.com', '$2y$10$da3TvWpJHQsKYyo.HYuDBON.WBCdCcFGYRL/KPodPrmxIy1eQkbs.', 'male', 'user/66fbed28b91512.680352631727786280.png', '1991-10-01', 'mumjbai', 'mkumbai', NULL, 1, 0, NULL, 15, NULL, NULL, '2024-10-01 16:08:00', '2024-10-01 16:30:20', NULL),
(63, 'Jasika', 'Arya', '1234567890', 'teacher125@demo.com', '$2y$10$g5oLc2RjDwqDTY4jsesVEeruHlaj68cKACQ.IwfqKedJ7e0bAGySK', 'female', 'user/66fbef096c6ef3.544654021727786761.png', '1995-09-25', 'mumbai', 'mumbai', NULL, 1, 0, NULL, 15, NULL, NULL, '2024-10-01 16:16:01', '2024-10-01 16:30:18', NULL),
(64, 'Teacher', 'Demo', '21365212456', 'teacher123@demo.com', '$2y$10$Yzl8Hdae0A1/8h.BVkKX7u/xOLMuoYQAPED/VWIVXROogYjf2a/Me', 'male', NULL, '2000-02-16', 'Fake City', 'Fake City', NULL, 1, 0, NULL, 15, NULL, NULL, '2024-10-01 16:26:30', '2024-10-01 16:29:26', NULL);

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

--
-- Table structure for table `user_status_for_next_cycles`
--

CREATE TABLE `user_status_for_next_cycles` (
  `id` bigint(20) UNSIGNED NOT NULL,
  `user_id` bigint(20) UNSIGNED NOT NULL,
  `status` int(11) NOT NULL,
  `school_id` bigint(20) UNSIGNED NOT NULL,
  `created_at` timestamp NULL DEFAULT NULL,
  `updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;

--
-- Indexes for dumped tables
--

--
-- Indexes for table `academic_calendars`
--
ALTER TABLE `academic_calendars`
  ADD PRIMARY KEY (`id`),
  ADD KEY `academic_calendars_school_id_foreign` (`school_id`),
  ADD KEY `academic_calendars_session_year_id_foreign` (`session_year_id`);

--
-- Indexes for table `addons`
--
ALTER TABLE `addons`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `addons_feature_id_unique` (`feature_id`);

--
-- Indexes for table `addon_subscriptions`
--
ALTER TABLE `addon_subscriptions`
  ADD PRIMARY KEY (`id`),
  ADD KEY `addon_subscriptions_school_id_foreign` (`school_id`),
  ADD KEY `addon_subscriptions_feature_id_foreign` (`feature_id`);

--
-- Indexes for table `announcements`
--
ALTER TABLE `announcements`
  ADD PRIMARY KEY (`id`),
  ADD KEY `announcements_school_id_foreign` (`school_id`),
  ADD KEY `announcements_session_year_id_foreign` (`session_year_id`);

--
-- Indexes for table `announcement_classes`
--
ALTER TABLE `announcement_classes`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `unique_columns` (`announcement_id`,`class_section_id`,`school_id`),
  ADD KEY `announcement_classes_school_id_foreign` (`school_id`),
  ADD KEY `announcement_classes_announcement_id_index` (`announcement_id`),
  ADD KEY `announcement_classes_class_section_id_index` (`class_section_id`),
  ADD KEY `announcement_classes_class_subject_id_foreign` (`class_subject_id`);

--
-- Indexes for table `assignments`
--
ALTER TABLE `assignments`
  ADD PRIMARY KEY (`id`),
  ADD KEY `assignments_school_id_foreign` (`school_id`),
  ADD KEY `assignments_class_section_id_foreign` (`class_section_id`),
  ADD KEY `assignments_class_subject_id_foreign` (`class_subject_id`),
  ADD KEY `assignments_session_year_id_foreign` (`session_year_id`),
  ADD KEY `assignments_created_by_foreign` (`created_by`),
  ADD KEY `assignments_edited_by_foreign` (`edited_by`);

--
-- Indexes for table `assignment_submissions`
--
ALTER TABLE `assignment_submissions`
  ADD PRIMARY KEY (`id`),
  ADD KEY `assignment_submissions_assignment_id_foreign` (`assignment_id`),
  ADD KEY `assignment_submissions_school_id_foreign` (`school_id`),
  ADD KEY `assignment_submissions_student_id_foreign` (`student_id`),
  ADD KEY `assignment_submissions_session_year_id_foreign` (`session_year_id`);

--
-- Indexes for table `attendances`
--
ALTER TABLE `attendances`
  ADD PRIMARY KEY (`id`),
  ADD KEY `attendances_school_id_foreign` (`school_id`),
  ADD KEY `attendances_class_section_id_foreign` (`class_section_id`),
  ADD KEY `attendances_student_id_foreign` (`student_id`),
  ADD KEY `attendances_session_year_id_foreign` (`session_year_id`);

--
-- Indexes for table `categories`
--
ALTER TABLE `categories`
  ADD PRIMARY KEY (`id`),
  ADD KEY `categories_school_id_foreign` (`school_id`);

--
-- Indexes for table `classes`
--
ALTER TABLE `classes`
  ADD PRIMARY KEY (`id`),
  ADD KEY `classes_school_id_foreign` (`school_id`),
  ADD KEY `classes_medium_id_foreign` (`medium_id`),
  ADD KEY `classes_shift_id_foreign` (`shift_id`),
  ADD KEY `classes_stream_id_foreign` (`stream_id`);

--
-- Indexes for table `class_sections`
--
ALTER TABLE `class_sections`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `unique_id` (`class_id`,`section_id`,`medium_id`),
  ADD KEY `class_sections_school_id_foreign` (`school_id`),
  ADD KEY `class_sections_section_id_foreign` (`section_id`),
  ADD KEY `class_sections_medium_id_foreign` (`medium_id`);

--
-- Indexes for table `class_subjects`
--
ALTER TABLE `class_subjects`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `unique_ids` (`class_id`,`subject_id`,`virtual_semester_id`),
  ADD KEY `class_subjects_elective_subject_group_id_foreign` (`elective_subject_group_id`),
  ADD KEY `class_subjects_school_id_foreign` (`school_id`),
  ADD KEY `class_subjects_subject_id_foreign` (`subject_id`),
  ADD KEY `class_subjects_semester_id_foreign` (`semester_id`);

--
-- Indexes for table `class_teachers`
--
ALTER TABLE `class_teachers`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `unique_id` (`class_section_id`,`teacher_id`),
  ADD KEY `class_teachers_school_id_foreign` (`school_id`),
  ADD KEY `class_teachers_teacher_id_foreign` (`teacher_id`);

--
-- Indexes for table `compulsory_fees`
--
ALTER TABLE `compulsory_fees`
  ADD PRIMARY KEY (`id`),
  ADD KEY `compulsory_fees_student_id_foreign` (`student_id`),
  ADD KEY `compulsory_fees_payment_transaction_id_foreign` (`payment_transaction_id`),
  ADD KEY `compulsory_fees_installment_id_foreign` (`installment_id`),
  ADD KEY `compulsory_fees_fees_paid_id_foreign` (`fees_paid_id`),
  ADD KEY `compulsory_fees_school_id_foreign` (`school_id`);

--
-- Indexes for table `elective_subject_groups`
--
ALTER TABLE `elective_subject_groups`
  ADD PRIMARY KEY (`id`),
  ADD KEY `elective_subject_groups_school_id_foreign` (`school_id`),
  ADD KEY `elective_subject_groups_class_id_foreign` (`class_id`),
  ADD KEY `elective_subject_groups_semester_id_foreign` (`semester_id`);

--
-- Indexes for table `exams`
--
ALTER TABLE `exams`
  ADD PRIMARY KEY (`id`),
  ADD KEY `exams_school_id_foreign` (`school_id`),
  ADD KEY `exams_class_id_foreign` (`class_id`),
  ADD KEY `exams_session_year_id_foreign` (`session_year_id`);

--
-- Indexes for table `exam_marks`
--
ALTER TABLE `exam_marks`
  ADD PRIMARY KEY (`id`),
  ADD KEY `exam_marks_school_id_foreign` (`school_id`),
  ADD KEY `exam_marks_exam_timetable_id_foreign` (`exam_timetable_id`),
  ADD KEY `exam_marks_student_id_foreign` (`student_id`),
  ADD KEY `exam_marks_class_subject_id_foreign` (`class_subject_id`),
  ADD KEY `exam_marks_session_year_id_foreign` (`session_year_id`);

--
-- Indexes for table `exam_results`
--
ALTER TABLE `exam_results`
  ADD PRIMARY KEY (`id`),
  ADD KEY `exam_results_school_id_foreign` (`school_id`),
  ADD KEY `exam_results_exam_id_foreign` (`exam_id`),
  ADD KEY `exam_results_class_section_id_foreign` (`class_section_id`),
  ADD KEY `exam_results_student_id_foreign` (`student_id`),
  ADD KEY `exam_results_session_year_id_foreign` (`session_year_id`);

--
-- Indexes for table `exam_timetables`
--
ALTER TABLE `exam_timetables`
  ADD PRIMARY KEY (`id`),
  ADD KEY `exam_timetables_exam_id_foreign` (`exam_id`),
  ADD KEY `exam_timetables_school_id_foreign` (`school_id`),
  ADD KEY `exam_timetables_class_subject_id_foreign` (`class_subject_id`),
  ADD KEY `exam_timetables_session_year_id_foreign` (`session_year_id`);

--
-- Indexes for table `expenses`
--
ALTER TABLE `expenses`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `salary_unique_records` (`staff_id`,`month`,`year`),
  ADD KEY `expenses_school_id_foreign` (`school_id`),
  ADD KEY `expenses_category_id_foreign` (`category_id`),
  ADD KEY `expenses_session_year_id_foreign` (`session_year_id`);

--
-- Indexes for table `expense_categories`
--
ALTER TABLE `expense_categories`
  ADD PRIMARY KEY (`id`),
  ADD KEY `expense_categories_school_id_foreign` (`school_id`);

--
-- Indexes for table `extra_student_datas`
--
ALTER TABLE `extra_student_datas`
  ADD PRIMARY KEY (`id`),
  ADD KEY `extra_student_datas_form_field_id_foreign` (`form_field_id`),
  ADD KEY `extra_student_datas_school_id_foreign` (`school_id`),
  ADD KEY `extra_student_datas_student_id_foreign` (`student_id`);

--
-- Indexes for table `failed_jobs`
--
ALTER TABLE `failed_jobs`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `failed_jobs_uuid_unique` (`uuid`);

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

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

--
-- Indexes for table `fees`
--
ALTER TABLE `fees`
  ADD PRIMARY KEY (`id`),
  ADD KEY `fees_class_id_foreign` (`class_id`),
  ADD KEY `fees_school_id_foreign` (`school_id`),
  ADD KEY `fees_session_year_id_foreign` (`session_year_id`);

--
-- Indexes for table `fees_advance`
--
ALTER TABLE `fees_advance`
  ADD PRIMARY KEY (`id`),
  ADD KEY `fees_advance_compulsory_fee_id_foreign` (`compulsory_fee_id`),
  ADD KEY `fees_advance_student_id_foreign` (`student_id`),
  ADD KEY `fees_advance_parent_id_foreign` (`parent_id`);

--
-- Indexes for table `fees_class_types`
--
ALTER TABLE `fees_class_types`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `unique_ids` (`class_id`,`fees_type_id`,`school_id`,`fees_id`),
  ADD KEY `fees_class_types_fees_id_foreign` (`fees_id`),
  ADD KEY `fees_class_types_fees_type_id_foreign` (`fees_type_id`),
  ADD KEY `fees_class_types_school_id_foreign` (`school_id`);

--
-- Indexes for table `fees_installments`
--
ALTER TABLE `fees_installments`
  ADD PRIMARY KEY (`id`),
  ADD KEY `fees_installments_fees_id_foreign` (`fees_id`),
  ADD KEY `fees_installments_session_year_id_foreign` (`session_year_id`),
  ADD KEY `fees_installments_school_id_foreign` (`school_id`);

--
-- Indexes for table `fees_paids`
--
ALTER TABLE `fees_paids`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `unique_ids` (`student_id`,`fees_id`,`school_id`),
  ADD KEY `fees_paids_fees_id_foreign` (`fees_id`),
  ADD KEY `fees_paids_school_id_foreign` (`school_id`);

--
-- Indexes for table `fees_types`
--
ALTER TABLE `fees_types`
  ADD PRIMARY KEY (`id`),
  ADD KEY `fees_types_school_id_foreign` (`school_id`);

--
-- Indexes for table `files`
--
ALTER TABLE `files`
  ADD PRIMARY KEY (`id`),
  ADD KEY `files_modal_type_modal_id_index` (`modal_type`,`modal_id`),
  ADD KEY `files_school_id_foreign` (`school_id`);

--
-- Indexes for table `form_fields`
--
ALTER TABLE `form_fields`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `name` (`name`,`school_id`),
  ADD KEY `form_fields_school_id_foreign` (`school_id`);

--
-- Indexes for table `grades`
--
ALTER TABLE `grades`
  ADD PRIMARY KEY (`id`),
  ADD KEY `grades_school_id_foreign` (`school_id`);

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

--
-- Indexes for table `holidays`
--
ALTER TABLE `holidays`
  ADD PRIMARY KEY (`id`),
  ADD KEY `holidays_school_id_foreign` (`school_id`);

--
-- Indexes for table `languages`
--
ALTER TABLE `languages`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `languages_code_unique` (`code`);

--
-- Indexes for table `leaves`
--
ALTER TABLE `leaves`
  ADD PRIMARY KEY (`id`),
  ADD KEY `leaves_user_id_foreign` (`user_id`),
  ADD KEY `leaves_school_id_foreign` (`school_id`),
  ADD KEY `leaves_leave_master_id_foreign` (`leave_master_id`);

--
-- Indexes for table `leave_details`
--
ALTER TABLE `leave_details`
  ADD PRIMARY KEY (`id`),
  ADD KEY `leave_details_leave_id_foreign` (`leave_id`),
  ADD KEY `leave_details_school_id_foreign` (`school_id`);

--
-- Indexes for table `leave_masters`
--
ALTER TABLE `leave_masters`
  ADD PRIMARY KEY (`id`),
  ADD KEY `leave_masters_session_year_id_foreign` (`session_year_id`),
  ADD KEY `leave_masters_school_id_foreign` (`school_id`);

--
-- Indexes for table `lessons`
--
ALTER TABLE `lessons`
  ADD PRIMARY KEY (`id`),
  ADD KEY `lessons_school_id_foreign` (`school_id`),
  ADD KEY `lessons_class_section_id_foreign` (`class_section_id`),
  ADD KEY `lessons_class_subject_id_foreign` (`class_subject_id`);

--
-- Indexes for table `lesson_topics`
--
ALTER TABLE `lesson_topics`
  ADD PRIMARY KEY (`id`),
  ADD KEY `lesson_topics_lesson_id_foreign` (`lesson_id`),
  ADD KEY `lesson_topics_school_id_foreign` (`school_id`);

--
-- Indexes for table `mediums`
--
ALTER TABLE `mediums`
  ADD PRIMARY KEY (`id`),
  ADD KEY `mediums_school_id_foreign` (`school_id`);

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

--
-- Indexes for table `model_has_permissions`
--
ALTER TABLE `model_has_permissions`
  ADD PRIMARY KEY (`permission_id`,`model_id`,`model_type`),
  ADD KEY `model_has_permissions_model_id_model_type_index` (`model_id`,`model_type`);

--
-- Indexes for table `model_has_roles`
--
ALTER TABLE `model_has_roles`
  ADD PRIMARY KEY (`role_id`,`model_id`,`model_type`),
  ADD KEY `model_has_roles_model_id_model_type_index` (`model_id`,`model_type`);

--
-- Indexes for table `online_exams`
--
ALTER TABLE `online_exams`
  ADD PRIMARY KEY (`id`),
  ADD KEY `online_exams_school_id_foreign` (`school_id`),
  ADD KEY `online_exams_class_section_id_foreign` (`class_section_id`),
  ADD KEY `online_exams_class_subject_id_foreign` (`class_subject_id`),
  ADD KEY `online_exams_session_year_id_foreign` (`session_year_id`);

--
-- Indexes for table `online_exam_questions`
--
ALTER TABLE `online_exam_questions`
  ADD PRIMARY KEY (`id`),
  ADD KEY `online_exam_questions_school_id_foreign` (`school_id`),
  ADD KEY `online_exam_questions_class_section_id_foreign` (`class_section_id`),
  ADD KEY `online_exam_questions_class_subject_id_foreign` (`class_subject_id`),
  ADD KEY `online_exam_questions_last_edited_by_foreign` (`last_edited_by`);

--
-- Indexes for table `online_exam_question_choices`
--
ALTER TABLE `online_exam_question_choices`
  ADD PRIMARY KEY (`id`),
  ADD KEY `online_exam_question_choices_school_id_foreign` (`school_id`),
  ADD KEY `online_exam_question_choices_online_exam_id_foreign` (`online_exam_id`),
  ADD KEY `online_exam_question_choices_question_id_foreign` (`question_id`);

--
-- Indexes for table `online_exam_question_options`
--
ALTER TABLE `online_exam_question_options`
  ADD PRIMARY KEY (`id`),
  ADD KEY `online_exam_question_options_question_id_foreign` (`question_id`),
  ADD KEY `online_exam_question_options_school_id_foreign` (`school_id`);

--
-- Indexes for table `online_exam_student_answers`
--
ALTER TABLE `online_exam_student_answers`
  ADD PRIMARY KEY (`id`),
  ADD KEY `online_exam_student_answers_school_id_foreign` (`school_id`),
  ADD KEY `online_exam_student_answers_student_id_foreign` (`student_id`),
  ADD KEY `online_exam_student_answers_online_exam_id_foreign` (`online_exam_id`),
  ADD KEY `online_exam_student_answers_question_id_foreign` (`question_id`),
  ADD KEY `online_exam_student_answers_option_id_foreign` (`option_id`);

--
-- Indexes for table `optional_fees`
--
ALTER TABLE `optional_fees`
  ADD PRIMARY KEY (`id`),
  ADD KEY `optional_fees_student_id_foreign` (`student_id`),
  ADD KEY `optional_fees_class_id_foreign` (`class_id`),
  ADD KEY `optional_fees_payment_transaction_id_foreign` (`payment_transaction_id`),
  ADD KEY `optional_fees_fees_class_id_foreign` (`fees_class_id`),
  ADD KEY `optional_fees_fees_paid_id_foreign` (`fees_paid_id`),
  ADD KEY `optional_fees_school_id_foreign` (`school_id`);

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

--
-- Indexes for table `package_features`
--
ALTER TABLE `package_features`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `unique` (`package_id`,`feature_id`),
  ADD KEY `package_features_package_id_index` (`package_id`),
  ADD KEY `package_features_feature_id_index` (`feature_id`);

--
-- Indexes for table `password_resets`
--
ALTER TABLE `password_resets`
  ADD KEY `password_resets_email_index` (`email`);

--
-- Indexes for table `payment_configurations`
--
ALTER TABLE `payment_configurations`
  ADD PRIMARY KEY (`id`),
  ADD KEY `payment_configurations_school_id_foreign` (`school_id`);

--
-- Indexes for table `payment_transactions`
--
ALTER TABLE `payment_transactions`
  ADD PRIMARY KEY (`id`),
  ADD KEY `payment_transactions_user_id_foreign` (`user_id`),
  ADD KEY `payment_transactions_school_id_foreign` (`school_id`);

--
-- Indexes for table `permissions`
--
ALTER TABLE `permissions`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `permissions_name_guard_name_unique` (`name`,`guard_name`);

--
-- Indexes for table `personal_access_tokens`
--
ALTER TABLE `personal_access_tokens`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `personal_access_tokens_token_unique` (`token`),
  ADD KEY `personal_access_tokens_tokenable_type_tokenable_id_index` (`tokenable_type`,`tokenable_id`);

--
-- Indexes for table `promote_students`
--
ALTER TABLE `promote_students`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `unique_columns` (`student_id`,`class_section_id`,`session_year_id`),
  ADD KEY `promote_students_school_id_foreign` (`school_id`),
  ADD KEY `promote_students_class_section_id_foreign` (`class_section_id`),
  ADD KEY `promote_students_session_year_id_foreign` (`session_year_id`);

--
-- Indexes for table `roles`
--
ALTER TABLE `roles`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `roles_name_guard_name_school_id_unique` (`name`,`guard_name`,`school_id`),
  ADD KEY `roles_school_id_foreign` (`school_id`);

--
-- Indexes for table `role_has_permissions`
--
ALTER TABLE `role_has_permissions`
  ADD PRIMARY KEY (`permission_id`,`role_id`),
  ADD KEY `role_has_permissions_role_id_foreign` (`role_id`);

--
-- Indexes for table `schools`
--
ALTER TABLE `schools`
  ADD PRIMARY KEY (`id`),
  ADD KEY `schools_admin_id_foreign` (`admin_id`);

--
-- Indexes for table `school_settings`
--
ALTER TABLE `school_settings`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `school_settings_name_school_id_unique` (`name`,`school_id`),
  ADD KEY `school_settings_school_id_foreign` (`school_id`);

--
-- Indexes for table `sections`
--
ALTER TABLE `sections`
  ADD PRIMARY KEY (`id`),
  ADD KEY `sections_school_id_foreign` (`school_id`);

--
-- Indexes for table `semesters`
--
ALTER TABLE `semesters`
  ADD PRIMARY KEY (`id`),
  ADD KEY `semesters_school_id_foreign` (`school_id`);

--
-- Indexes for table `session_years`
--
ALTER TABLE `session_years`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `session_years_name_school_id_unique` (`name`,`school_id`),
  ADD KEY `session_years_school_id_foreign` (`school_id`);

--
-- Indexes for table `shifts`
--
ALTER TABLE `shifts`
  ADD PRIMARY KEY (`id`),
  ADD KEY `shifts_school_id_foreign` (`school_id`);

--
-- Indexes for table `sliders`
--
ALTER TABLE `sliders`
  ADD PRIMARY KEY (`id`),
  ADD KEY `sliders_school_id_foreign` (`school_id`);

--
-- Indexes for table `staffs`
--
ALTER TABLE `staffs`
  ADD PRIMARY KEY (`id`),
  ADD KEY `staffs_user_id_foreign` (`user_id`);

--
-- Indexes for table `staff_support_schools`
--
ALTER TABLE `staff_support_schools`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `user_school` (`user_id`,`school_id`),
  ADD KEY `staff_support_schools_school_id_foreign` (`school_id`);

--
-- Indexes for table `streams`
--
ALTER TABLE `streams`
  ADD PRIMARY KEY (`id`),
  ADD KEY `streams_school_id_foreign` (`school_id`);

--
-- Indexes for table `students`
--
ALTER TABLE `students`
  ADD PRIMARY KEY (`id`),
  ADD KEY `students_school_id_foreign` (`school_id`),
  ADD KEY `students_user_id_foreign` (`user_id`),
  ADD KEY `students_class_section_id_foreign` (`class_section_id`),
  ADD KEY `students_guardian_id_foreign` (`guardian_id`),
  ADD KEY `students_session_year_id_foreign` (`session_year_id`);

--
-- Indexes for table `student_online_exam_statuses`
--
ALTER TABLE `student_online_exam_statuses`
  ADD PRIMARY KEY (`id`),
  ADD KEY `student_online_exam_statuses_school_id_foreign` (`school_id`),
  ADD KEY `student_online_exam_statuses_student_id_foreign` (`student_id`),
  ADD KEY `student_online_exam_statuses_online_exam_id_foreign` (`online_exam_id`);

--
-- Indexes for table `student_subjects`
--
ALTER TABLE `student_subjects`
  ADD PRIMARY KEY (`id`),
  ADD KEY `student_subjects_school_id_foreign` (`school_id`),
  ADD KEY `student_subjects_student_id_foreign` (`student_id`),
  ADD KEY `student_subjects_class_subject_id_foreign` (`class_subject_id`),
  ADD KEY `student_subjects_class_section_id_foreign` (`class_section_id`),
  ADD KEY `student_subjects_session_year_id_foreign` (`session_year_id`);

--
-- Indexes for table `subjects`
--
ALTER TABLE `subjects`
  ADD PRIMARY KEY (`id`),
  ADD KEY `subjects_school_id_foreign` (`school_id`),
  ADD KEY `subjects_medium_id_foreign` (`medium_id`);

--
-- Indexes for table `subject_teachers`
--
ALTER TABLE `subject_teachers`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `unique_ids` (`class_section_id`,`class_subject_id`,`teacher_id`),
  ADD KEY `subject_teachers_school_id_foreign` (`school_id`),
  ADD KEY `subject_teachers_subject_id_foreign` (`subject_id`),
  ADD KEY `subject_teachers_teacher_id_foreign` (`teacher_id`),
  ADD KEY `subject_teachers_class_subject_id_foreign` (`class_subject_id`);

--
-- Indexes for table `subscriptions`
--
ALTER TABLE `subscriptions`
  ADD PRIMARY KEY (`id`),
  ADD KEY `subscriptions_package_id_foreign` (`package_id`),
  ADD KEY `subscriptions_school_id_foreign` (`school_id`);

--
-- Indexes for table `subscription_bills`
--
ALTER TABLE `subscription_bills`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `subscription_bill` (`subscription_id`,`school_id`),
  ADD KEY `subscription_bills_school_id_foreign` (`school_id`),
  ADD KEY `subscription_bills_payment_transaction_id_foreign` (`payment_transaction_id`);

--
-- Indexes for table `subscription_features`
--
ALTER TABLE `subscription_features`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `unique` (`subscription_id`,`feature_id`),
  ADD KEY `subscription_features_feature_id_foreign` (`feature_id`);

--
-- Indexes for table `system_settings`
--
ALTER TABLE `system_settings`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `system_settings_name_unique` (`name`);

--
-- Indexes for table `timetables`
--
ALTER TABLE `timetables`
  ADD PRIMARY KEY (`id`),
  ADD KEY `timetables_subject_teacher_id_foreign` (`subject_teacher_id`),
  ADD KEY `timetables_school_id_foreign` (`school_id`),
  ADD KEY `timetables_class_section_id_foreign` (`class_section_id`),
  ADD KEY `timetables_subject_id_foreign` (`subject_id`),
  ADD KEY `timetables_semester_id_foreign` (`semester_id`);

--
-- Indexes for table `users`
--
ALTER TABLE `users`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `users_email_unique` (`email`),
  ADD KEY `users_school_id_foreign` (`school_id`);

--
-- Indexes for table `user_status_for_next_cycles`
--
ALTER TABLE `user_status_for_next_cycles`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `user_status_for_next_cycles_user_id_unique` (`user_id`),
  ADD KEY `user_status_for_next_cycles_school_id_foreign` (`school_id`);

--
-- AUTO_INCREMENT for dumped tables
--

--
-- AUTO_INCREMENT for table `academic_calendars`
--
ALTER TABLE `academic_calendars`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `addons`
--
ALTER TABLE `addons`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `addon_subscriptions`
--
ALTER TABLE `addon_subscriptions`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `announcements`
--
ALTER TABLE `announcements`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `announcement_classes`
--
ALTER TABLE `announcement_classes`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `assignments`
--
ALTER TABLE `assignments`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `assignment_submissions`
--
ALTER TABLE `assignment_submissions`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `attendances`
--
ALTER TABLE `attendances`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `categories`
--
ALTER TABLE `categories`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `classes`
--
ALTER TABLE `classes`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;

--
-- AUTO_INCREMENT for table `class_sections`
--
ALTER TABLE `class_sections`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;

--
-- AUTO_INCREMENT for table `class_subjects`
--
ALTER TABLE `class_subjects`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `class_teachers`
--
ALTER TABLE `class_teachers`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `compulsory_fees`
--
ALTER TABLE `compulsory_fees`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `elective_subject_groups`
--
ALTER TABLE `elective_subject_groups`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `exams`
--
ALTER TABLE `exams`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `exam_marks`
--
ALTER TABLE `exam_marks`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `exam_results`
--
ALTER TABLE `exam_results`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `exam_timetables`
--
ALTER TABLE `exam_timetables`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `expenses`
--
ALTER TABLE `expenses`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `expense_categories`
--
ALTER TABLE `expense_categories`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `extra_student_datas`
--
ALTER TABLE `extra_student_datas`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=17;

--
-- AUTO_INCREMENT for table `failed_jobs`
--
ALTER TABLE `failed_jobs`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `faqs`
--
ALTER TABLE `faqs`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;

--
-- AUTO_INCREMENT for table `features`
--
ALTER TABLE `features`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=17;

--
-- AUTO_INCREMENT for table `fees`
--
ALTER TABLE `fees`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `fees_advance`
--
ALTER TABLE `fees_advance`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `fees_class_types`
--
ALTER TABLE `fees_class_types`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `fees_installments`
--
ALTER TABLE `fees_installments`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `fees_paids`
--
ALTER TABLE `fees_paids`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `fees_types`
--
ALTER TABLE `fees_types`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `files`
--
ALTER TABLE `files`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `form_fields`
--
ALTER TABLE `form_fields`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;

--
-- AUTO_INCREMENT for table `grades`
--
ALTER TABLE `grades`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `guidances`
--
ALTER TABLE `guidances`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `holidays`
--
ALTER TABLE `holidays`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `languages`
--
ALTER TABLE `languages`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `leaves`
--
ALTER TABLE `leaves`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `leave_details`
--
ALTER TABLE `leave_details`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `leave_masters`
--
ALTER TABLE `leave_masters`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `lessons`
--
ALTER TABLE `lessons`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `lesson_topics`
--
ALTER TABLE `lesson_topics`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `mediums`
--
ALTER TABLE `mediums`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;

--
-- AUTO_INCREMENT for table `migrations`
--
ALTER TABLE `migrations`
  MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;

--
-- AUTO_INCREMENT for table `online_exams`
--
ALTER TABLE `online_exams`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `online_exam_questions`
--
ALTER TABLE `online_exam_questions`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `online_exam_question_choices`
--
ALTER TABLE `online_exam_question_choices`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `online_exam_question_options`
--
ALTER TABLE `online_exam_question_options`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `online_exam_student_answers`
--
ALTER TABLE `online_exam_student_answers`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `optional_fees`
--
ALTER TABLE `optional_fees`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `packages`
--
ALTER TABLE `packages`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;

--
-- AUTO_INCREMENT for table `package_features`
--
ALTER TABLE `package_features`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=317;

--
-- AUTO_INCREMENT for table `payment_configurations`
--
ALTER TABLE `payment_configurations`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `payment_transactions`
--
ALTER TABLE `payment_transactions`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `permissions`
--
ALTER TABLE `permissions`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=393;

--
-- AUTO_INCREMENT for table `personal_access_tokens`
--
ALTER TABLE `personal_access_tokens`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8;

--
-- AUTO_INCREMENT for table `promote_students`
--
ALTER TABLE `promote_students`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `roles`
--
ALTER TABLE `roles`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=54;

--
-- AUTO_INCREMENT for table `schools`
--
ALTER TABLE `schools`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=16;

--
-- AUTO_INCREMENT for table `school_settings`
--
ALTER TABLE `school_settings`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=211;

--
-- AUTO_INCREMENT for table `sections`
--
ALTER TABLE `sections`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10;

--
-- AUTO_INCREMENT for table `semesters`
--
ALTER TABLE `semesters`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;

--
-- AUTO_INCREMENT for table `session_years`
--
ALTER TABLE `session_years`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=17;

--
-- AUTO_INCREMENT for table `shifts`
--
ALTER TABLE `shifts`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;

--
-- AUTO_INCREMENT for table `sliders`
--
ALTER TABLE `sliders`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `staffs`
--
ALTER TABLE `staffs`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=22;

--
-- AUTO_INCREMENT for table `staff_support_schools`
--
ALTER TABLE `staff_support_schools`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13;

--
-- AUTO_INCREMENT for table `streams`
--
ALTER TABLE `streams`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;

--
-- AUTO_INCREMENT for table `students`
--
ALTER TABLE `students`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=19;

--
-- AUTO_INCREMENT for table `student_online_exam_statuses`
--
ALTER TABLE `student_online_exam_statuses`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `student_subjects`
--
ALTER TABLE `student_subjects`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `subjects`
--
ALTER TABLE `subjects`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=8;

--
-- AUTO_INCREMENT for table `subject_teachers`
--
ALTER TABLE `subject_teachers`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `subscriptions`
--
ALTER TABLE `subscriptions`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `subscription_bills`
--
ALTER TABLE `subscription_bills`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `subscription_features`
--
ALTER TABLE `subscription_features`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `system_settings`
--
ALTER TABLE `system_settings`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=171;

--
-- AUTO_INCREMENT for table `timetables`
--
ALTER TABLE `timetables`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- AUTO_INCREMENT for table `users`
--
ALTER TABLE `users`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=65;

--
-- AUTO_INCREMENT for table `user_status_for_next_cycles`
--
ALTER TABLE `user_status_for_next_cycles`
  MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;

--
-- Constraints for dumped tables
--

--
-- Constraints for table `academic_calendars`
--
ALTER TABLE `academic_calendars`
  ADD CONSTRAINT `academic_calendars_school_id_foreign` FOREIGN KEY (`school_id`) REFERENCES `schools` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `academic_calendars_session_year_id_foreign` FOREIGN KEY (`session_year_id`) REFERENCES `session_years` (`id`);

--
-- Constraints for table `addons`
--
ALTER TABLE `addons`
  ADD CONSTRAINT `addons_feature_id_foreign` FOREIGN KEY (`feature_id`) REFERENCES `features` (`id`);

--
-- Constraints for table `addon_subscriptions`
--
ALTER TABLE `addon_subscriptions`
  ADD CONSTRAINT `addon_subscriptions_feature_id_foreign` FOREIGN KEY (`feature_id`) REFERENCES `features` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `addon_subscriptions_school_id_foreign` FOREIGN KEY (`school_id`) REFERENCES `schools` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `announcements`
--
ALTER TABLE `announcements`
  ADD CONSTRAINT `announcements_school_id_foreign` FOREIGN KEY (`school_id`) REFERENCES `schools` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `announcements_session_year_id_foreign` FOREIGN KEY (`session_year_id`) REFERENCES `session_years` (`id`);

--
-- Constraints for table `announcement_classes`
--
ALTER TABLE `announcement_classes`
  ADD CONSTRAINT `announcement_classes_announcement_id_foreign` FOREIGN KEY (`announcement_id`) REFERENCES `announcements` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `announcement_classes_class_section_id_foreign` FOREIGN KEY (`class_section_id`) REFERENCES `class_sections` (`id`),
  ADD CONSTRAINT `announcement_classes_class_subject_id_foreign` FOREIGN KEY (`class_subject_id`) REFERENCES `class_subjects` (`id`),
  ADD CONSTRAINT `announcement_classes_school_id_foreign` FOREIGN KEY (`school_id`) REFERENCES `schools` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `assignments`
--
ALTER TABLE `assignments`
  ADD CONSTRAINT `assignments_class_section_id_foreign` FOREIGN KEY (`class_section_id`) REFERENCES `class_sections` (`id`),
  ADD CONSTRAINT `assignments_class_subject_id_foreign` FOREIGN KEY (`class_subject_id`) REFERENCES `class_subjects` (`id`),
  ADD CONSTRAINT `assignments_created_by_foreign` FOREIGN KEY (`created_by`) REFERENCES `users` (`id`),
  ADD CONSTRAINT `assignments_edited_by_foreign` FOREIGN KEY (`edited_by`) REFERENCES `users` (`id`),
  ADD CONSTRAINT `assignments_school_id_foreign` FOREIGN KEY (`school_id`) REFERENCES `schools` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `assignments_session_year_id_foreign` FOREIGN KEY (`session_year_id`) REFERENCES `session_years` (`id`);

--
-- Constraints for table `assignment_submissions`
--
ALTER TABLE `assignment_submissions`
  ADD CONSTRAINT `assignment_submissions_assignment_id_foreign` FOREIGN KEY (`assignment_id`) REFERENCES `assignments` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `assignment_submissions_school_id_foreign` FOREIGN KEY (`school_id`) REFERENCES `schools` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `assignment_submissions_session_year_id_foreign` FOREIGN KEY (`session_year_id`) REFERENCES `session_years` (`id`),
  ADD CONSTRAINT `assignment_submissions_student_id_foreign` FOREIGN KEY (`student_id`) REFERENCES `users` (`id`);

--
-- Constraints for table `attendances`
--
ALTER TABLE `attendances`
  ADD CONSTRAINT `attendances_class_section_id_foreign` FOREIGN KEY (`class_section_id`) REFERENCES `class_sections` (`id`),
  ADD CONSTRAINT `attendances_school_id_foreign` FOREIGN KEY (`school_id`) REFERENCES `schools` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `attendances_session_year_id_foreign` FOREIGN KEY (`session_year_id`) REFERENCES `session_years` (`id`),
  ADD CONSTRAINT `attendances_student_id_foreign` FOREIGN KEY (`student_id`) REFERENCES `users` (`id`);

--
-- Constraints for table `categories`
--
ALTER TABLE `categories`
  ADD CONSTRAINT `categories_school_id_foreign` FOREIGN KEY (`school_id`) REFERENCES `schools` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `classes`
--
ALTER TABLE `classes`
  ADD CONSTRAINT `classes_medium_id_foreign` FOREIGN KEY (`medium_id`) REFERENCES `mediums` (`id`),
  ADD CONSTRAINT `classes_school_id_foreign` FOREIGN KEY (`school_id`) REFERENCES `schools` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `classes_shift_id_foreign` FOREIGN KEY (`shift_id`) REFERENCES `shifts` (`id`),
  ADD CONSTRAINT `classes_stream_id_foreign` FOREIGN KEY (`stream_id`) REFERENCES `streams` (`id`);

--
-- Constraints for table `class_sections`
--
ALTER TABLE `class_sections`
  ADD CONSTRAINT `class_sections_class_id_foreign` FOREIGN KEY (`class_id`) REFERENCES `classes` (`id`),
  ADD CONSTRAINT `class_sections_medium_id_foreign` FOREIGN KEY (`medium_id`) REFERENCES `mediums` (`id`),
  ADD CONSTRAINT `class_sections_school_id_foreign` FOREIGN KEY (`school_id`) REFERENCES `schools` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `class_sections_section_id_foreign` FOREIGN KEY (`section_id`) REFERENCES `sections` (`id`);

--
-- Constraints for table `class_subjects`
--
ALTER TABLE `class_subjects`
  ADD CONSTRAINT `class_subjects_class_id_foreign` FOREIGN KEY (`class_id`) REFERENCES `classes` (`id`),
  ADD CONSTRAINT `class_subjects_elective_subject_group_id_foreign` FOREIGN KEY (`elective_subject_group_id`) REFERENCES `elective_subject_groups` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `class_subjects_school_id_foreign` FOREIGN KEY (`school_id`) REFERENCES `schools` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `class_subjects_semester_id_foreign` FOREIGN KEY (`semester_id`) REFERENCES `semesters` (`id`),
  ADD CONSTRAINT `class_subjects_subject_id_foreign` FOREIGN KEY (`subject_id`) REFERENCES `subjects` (`id`);

--
-- Constraints for table `class_teachers`
--
ALTER TABLE `class_teachers`
  ADD CONSTRAINT `class_teachers_class_section_id_foreign` FOREIGN KEY (`class_section_id`) REFERENCES `class_sections` (`id`),
  ADD CONSTRAINT `class_teachers_school_id_foreign` FOREIGN KEY (`school_id`) REFERENCES `schools` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `class_teachers_teacher_id_foreign` FOREIGN KEY (`teacher_id`) REFERENCES `users` (`id`);

--
-- Constraints for table `compulsory_fees`
--
ALTER TABLE `compulsory_fees`
  ADD CONSTRAINT `compulsory_fees_fees_paid_id_foreign` FOREIGN KEY (`fees_paid_id`) REFERENCES `fees_paids` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `compulsory_fees_installment_id_foreign` FOREIGN KEY (`installment_id`) REFERENCES `fees_installments` (`id`),
  ADD CONSTRAINT `compulsory_fees_payment_transaction_id_foreign` FOREIGN KEY (`payment_transaction_id`) REFERENCES `payment_transactions` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `compulsory_fees_school_id_foreign` FOREIGN KEY (`school_id`) REFERENCES `schools` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `compulsory_fees_student_id_foreign` FOREIGN KEY (`student_id`) REFERENCES `users` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `elective_subject_groups`
--
ALTER TABLE `elective_subject_groups`
  ADD CONSTRAINT `elective_subject_groups_class_id_foreign` FOREIGN KEY (`class_id`) REFERENCES `classes` (`id`),
  ADD CONSTRAINT `elective_subject_groups_school_id_foreign` FOREIGN KEY (`school_id`) REFERENCES `schools` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `elective_subject_groups_semester_id_foreign` FOREIGN KEY (`semester_id`) REFERENCES `semesters` (`id`);

--
-- Constraints for table `exams`
--
ALTER TABLE `exams`
  ADD CONSTRAINT `exams_class_id_foreign` FOREIGN KEY (`class_id`) REFERENCES `classes` (`id`),
  ADD CONSTRAINT `exams_school_id_foreign` FOREIGN KEY (`school_id`) REFERENCES `schools` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `exams_session_year_id_foreign` FOREIGN KEY (`session_year_id`) REFERENCES `session_years` (`id`);

--
-- Constraints for table `exam_marks`
--
ALTER TABLE `exam_marks`
  ADD CONSTRAINT `exam_marks_class_subject_id_foreign` FOREIGN KEY (`class_subject_id`) REFERENCES `class_subjects` (`id`),
  ADD CONSTRAINT `exam_marks_exam_timetable_id_foreign` FOREIGN KEY (`exam_timetable_id`) REFERENCES `exam_timetables` (`id`),
  ADD CONSTRAINT `exam_marks_school_id_foreign` FOREIGN KEY (`school_id`) REFERENCES `schools` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `exam_marks_session_year_id_foreign` FOREIGN KEY (`session_year_id`) REFERENCES `session_years` (`id`),
  ADD CONSTRAINT `exam_marks_student_id_foreign` FOREIGN KEY (`student_id`) REFERENCES `users` (`id`);

--
-- Constraints for table `exam_results`
--
ALTER TABLE `exam_results`
  ADD CONSTRAINT `exam_results_class_section_id_foreign` FOREIGN KEY (`class_section_id`) REFERENCES `class_sections` (`id`),
  ADD CONSTRAINT `exam_results_exam_id_foreign` FOREIGN KEY (`exam_id`) REFERENCES `exams` (`id`),
  ADD CONSTRAINT `exam_results_school_id_foreign` FOREIGN KEY (`school_id`) REFERENCES `schools` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `exam_results_session_year_id_foreign` FOREIGN KEY (`session_year_id`) REFERENCES `session_years` (`id`),
  ADD CONSTRAINT `exam_results_student_id_foreign` FOREIGN KEY (`student_id`) REFERENCES `users` (`id`);

--
-- Constraints for table `exam_timetables`
--
ALTER TABLE `exam_timetables`
  ADD CONSTRAINT `exam_timetables_class_subject_id_foreign` FOREIGN KEY (`class_subject_id`) REFERENCES `class_subjects` (`id`),
  ADD CONSTRAINT `exam_timetables_exam_id_foreign` FOREIGN KEY (`exam_id`) REFERENCES `exams` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `exam_timetables_school_id_foreign` FOREIGN KEY (`school_id`) REFERENCES `schools` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `exam_timetables_session_year_id_foreign` FOREIGN KEY (`session_year_id`) REFERENCES `session_years` (`id`);

--
-- Constraints for table `expenses`
--
ALTER TABLE `expenses`
  ADD CONSTRAINT `expenses_category_id_foreign` FOREIGN KEY (`category_id`) REFERENCES `expense_categories` (`id`),
  ADD CONSTRAINT `expenses_school_id_foreign` FOREIGN KEY (`school_id`) REFERENCES `schools` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `expenses_session_year_id_foreign` FOREIGN KEY (`session_year_id`) REFERENCES `session_years` (`id`),
  ADD CONSTRAINT `expenses_staff_id_foreign` FOREIGN KEY (`staff_id`) REFERENCES `staffs` (`id`);

--
-- Constraints for table `expense_categories`
--
ALTER TABLE `expense_categories`
  ADD CONSTRAINT `expense_categories_school_id_foreign` FOREIGN KEY (`school_id`) REFERENCES `schools` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `extra_student_datas`
--
ALTER TABLE `extra_student_datas`
  ADD CONSTRAINT `extra_student_datas_form_field_id_foreign` FOREIGN KEY (`form_field_id`) REFERENCES `form_fields` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `extra_student_datas_school_id_foreign` FOREIGN KEY (`school_id`) REFERENCES `schools` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `extra_student_datas_student_id_foreign` FOREIGN KEY (`student_id`) REFERENCES `users` (`id`);

--
-- Constraints for table `fees`
--
ALTER TABLE `fees`
  ADD CONSTRAINT `fees_class_id_foreign` FOREIGN KEY (`class_id`) REFERENCES `classes` (`id`),
  ADD CONSTRAINT `fees_school_id_foreign` FOREIGN KEY (`school_id`) REFERENCES `schools` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `fees_session_year_id_foreign` FOREIGN KEY (`session_year_id`) REFERENCES `session_years` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `fees_advance`
--
ALTER TABLE `fees_advance`
  ADD CONSTRAINT `fees_advance_compulsory_fee_id_foreign` FOREIGN KEY (`compulsory_fee_id`) REFERENCES `compulsory_fees` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `fees_advance_parent_id_foreign` FOREIGN KEY (`parent_id`) REFERENCES `users` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `fees_advance_student_id_foreign` FOREIGN KEY (`student_id`) REFERENCES `users` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `fees_class_types`
--
ALTER TABLE `fees_class_types`
  ADD CONSTRAINT `fees_class_types_class_id_foreign` FOREIGN KEY (`class_id`) REFERENCES `classes` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `fees_class_types_fees_id_foreign` FOREIGN KEY (`fees_id`) REFERENCES `fees` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `fees_class_types_fees_type_id_foreign` FOREIGN KEY (`fees_type_id`) REFERENCES `fees_types` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `fees_class_types_school_id_foreign` FOREIGN KEY (`school_id`) REFERENCES `schools` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `fees_installments`
--
ALTER TABLE `fees_installments`
  ADD CONSTRAINT `fees_installments_fees_id_foreign` FOREIGN KEY (`fees_id`) REFERENCES `fees` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `fees_installments_school_id_foreign` FOREIGN KEY (`school_id`) REFERENCES `schools` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `fees_installments_session_year_id_foreign` FOREIGN KEY (`session_year_id`) REFERENCES `session_years` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `fees_paids`
--
ALTER TABLE `fees_paids`
  ADD CONSTRAINT `fees_paids_fees_id_foreign` FOREIGN KEY (`fees_id`) REFERENCES `fees` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `fees_paids_school_id_foreign` FOREIGN KEY (`school_id`) REFERENCES `schools` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `fees_paids_student_id_foreign` FOREIGN KEY (`student_id`) REFERENCES `users` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `fees_types`
--
ALTER TABLE `fees_types`
  ADD CONSTRAINT `fees_types_school_id_foreign` FOREIGN KEY (`school_id`) REFERENCES `schools` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `files`
--
ALTER TABLE `files`
  ADD CONSTRAINT `files_school_id_foreign` FOREIGN KEY (`school_id`) REFERENCES `schools` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `form_fields`
--
ALTER TABLE `form_fields`
  ADD CONSTRAINT `form_fields_school_id_foreign` FOREIGN KEY (`school_id`) REFERENCES `schools` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `grades`
--
ALTER TABLE `grades`
  ADD CONSTRAINT `grades_school_id_foreign` FOREIGN KEY (`school_id`) REFERENCES `schools` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `holidays`
--
ALTER TABLE `holidays`
  ADD CONSTRAINT `holidays_school_id_foreign` FOREIGN KEY (`school_id`) REFERENCES `schools` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `leaves`
--
ALTER TABLE `leaves`
  ADD CONSTRAINT `leaves_leave_master_id_foreign` FOREIGN KEY (`leave_master_id`) REFERENCES `leave_masters` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `leaves_school_id_foreign` FOREIGN KEY (`school_id`) REFERENCES `schools` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `leaves_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `leave_details`
--
ALTER TABLE `leave_details`
  ADD CONSTRAINT `leave_details_leave_id_foreign` FOREIGN KEY (`leave_id`) REFERENCES `leaves` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `leave_details_school_id_foreign` FOREIGN KEY (`school_id`) REFERENCES `schools` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `leave_masters`
--
ALTER TABLE `leave_masters`
  ADD CONSTRAINT `leave_masters_school_id_foreign` FOREIGN KEY (`school_id`) REFERENCES `schools` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `leave_masters_session_year_id_foreign` FOREIGN KEY (`session_year_id`) REFERENCES `session_years` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `lessons`
--
ALTER TABLE `lessons`
  ADD CONSTRAINT `lessons_class_section_id_foreign` FOREIGN KEY (`class_section_id`) REFERENCES `class_sections` (`id`),
  ADD CONSTRAINT `lessons_class_subject_id_foreign` FOREIGN KEY (`class_subject_id`) REFERENCES `class_subjects` (`id`),
  ADD CONSTRAINT `lessons_school_id_foreign` FOREIGN KEY (`school_id`) REFERENCES `schools` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `lesson_topics`
--
ALTER TABLE `lesson_topics`
  ADD CONSTRAINT `lesson_topics_lesson_id_foreign` FOREIGN KEY (`lesson_id`) REFERENCES `lessons` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `lesson_topics_school_id_foreign` FOREIGN KEY (`school_id`) REFERENCES `schools` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `mediums`
--
ALTER TABLE `mediums`
  ADD CONSTRAINT `mediums_school_id_foreign` FOREIGN KEY (`school_id`) REFERENCES `schools` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `model_has_permissions`
--
ALTER TABLE `model_has_permissions`
  ADD CONSTRAINT `model_has_permissions_permission_id_foreign` FOREIGN KEY (`permission_id`) REFERENCES `permissions` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `model_has_roles`
--
ALTER TABLE `model_has_roles`
  ADD CONSTRAINT `model_has_roles_role_id_foreign` FOREIGN KEY (`role_id`) REFERENCES `roles` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `online_exams`
--
ALTER TABLE `online_exams`
  ADD CONSTRAINT `online_exams_class_section_id_foreign` FOREIGN KEY (`class_section_id`) REFERENCES `class_sections` (`id`),
  ADD CONSTRAINT `online_exams_class_subject_id_foreign` FOREIGN KEY (`class_subject_id`) REFERENCES `class_subjects` (`id`),
  ADD CONSTRAINT `online_exams_school_id_foreign` FOREIGN KEY (`school_id`) REFERENCES `schools` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `online_exams_session_year_id_foreign` FOREIGN KEY (`session_year_id`) REFERENCES `session_years` (`id`);

--
-- Constraints for table `online_exam_questions`
--
ALTER TABLE `online_exam_questions`
  ADD CONSTRAINT `online_exam_questions_class_section_id_foreign` FOREIGN KEY (`class_section_id`) REFERENCES `class_sections` (`id`),
  ADD CONSTRAINT `online_exam_questions_class_subject_id_foreign` FOREIGN KEY (`class_subject_id`) REFERENCES `class_subjects` (`id`),
  ADD CONSTRAINT `online_exam_questions_last_edited_by_foreign` FOREIGN KEY (`last_edited_by`) REFERENCES `users` (`id`),
  ADD CONSTRAINT `online_exam_questions_school_id_foreign` FOREIGN KEY (`school_id`) REFERENCES `schools` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `online_exam_question_choices`
--
ALTER TABLE `online_exam_question_choices`
  ADD CONSTRAINT `online_exam_question_choices_online_exam_id_foreign` FOREIGN KEY (`online_exam_id`) REFERENCES `online_exams` (`id`),
  ADD CONSTRAINT `online_exam_question_choices_question_id_foreign` FOREIGN KEY (`question_id`) REFERENCES `online_exam_questions` (`id`),
  ADD CONSTRAINT `online_exam_question_choices_school_id_foreign` FOREIGN KEY (`school_id`) REFERENCES `schools` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `online_exam_question_options`
--
ALTER TABLE `online_exam_question_options`
  ADD CONSTRAINT `online_exam_question_options_question_id_foreign` FOREIGN KEY (`question_id`) REFERENCES `online_exam_questions` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `online_exam_question_options_school_id_foreign` FOREIGN KEY (`school_id`) REFERENCES `schools` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `online_exam_student_answers`
--
ALTER TABLE `online_exam_student_answers`
  ADD CONSTRAINT `online_exam_student_answers_online_exam_id_foreign` FOREIGN KEY (`online_exam_id`) REFERENCES `online_exams` (`id`),
  ADD CONSTRAINT `online_exam_student_answers_option_id_foreign` FOREIGN KEY (`option_id`) REFERENCES `online_exam_question_options` (`id`),
  ADD CONSTRAINT `online_exam_student_answers_question_id_foreign` FOREIGN KEY (`question_id`) REFERENCES `online_exam_question_choices` (`id`),
  ADD CONSTRAINT `online_exam_student_answers_school_id_foreign` FOREIGN KEY (`school_id`) REFERENCES `schools` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `online_exam_student_answers_student_id_foreign` FOREIGN KEY (`student_id`) REFERENCES `users` (`id`);

--
-- Constraints for table `optional_fees`
--
ALTER TABLE `optional_fees`
  ADD CONSTRAINT `optional_fees_class_id_foreign` FOREIGN KEY (`class_id`) REFERENCES `classes` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `optional_fees_fees_class_id_foreign` FOREIGN KEY (`fees_class_id`) REFERENCES `fees_class_types` (`id`),
  ADD CONSTRAINT `optional_fees_fees_paid_id_foreign` FOREIGN KEY (`fees_paid_id`) REFERENCES `fees_paids` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `optional_fees_payment_transaction_id_foreign` FOREIGN KEY (`payment_transaction_id`) REFERENCES `payment_transactions` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `optional_fees_school_id_foreign` FOREIGN KEY (`school_id`) REFERENCES `schools` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `optional_fees_student_id_foreign` FOREIGN KEY (`student_id`) REFERENCES `users` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `package_features`
--
ALTER TABLE `package_features`
  ADD CONSTRAINT `package_features_feature_id_foreign` FOREIGN KEY (`feature_id`) REFERENCES `features` (`id`),
  ADD CONSTRAINT `package_features_package_id_foreign` FOREIGN KEY (`package_id`) REFERENCES `packages` (`id`);

--
-- Constraints for table `payment_configurations`
--
ALTER TABLE `payment_configurations`
  ADD CONSTRAINT `payment_configurations_school_id_foreign` FOREIGN KEY (`school_id`) REFERENCES `schools` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `payment_transactions`
--
ALTER TABLE `payment_transactions`
  ADD CONSTRAINT `payment_transactions_school_id_foreign` FOREIGN KEY (`school_id`) REFERENCES `schools` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `payment_transactions_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `promote_students`
--
ALTER TABLE `promote_students`
  ADD CONSTRAINT `promote_students_class_section_id_foreign` FOREIGN KEY (`class_section_id`) REFERENCES `class_sections` (`id`),
  ADD CONSTRAINT `promote_students_school_id_foreign` FOREIGN KEY (`school_id`) REFERENCES `schools` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `promote_students_session_year_id_foreign` FOREIGN KEY (`session_year_id`) REFERENCES `session_years` (`id`),
  ADD CONSTRAINT `promote_students_student_id_foreign` FOREIGN KEY (`student_id`) REFERENCES `users` (`id`);

--
-- Constraints for table `roles`
--
ALTER TABLE `roles`
  ADD CONSTRAINT `roles_school_id_foreign` FOREIGN KEY (`school_id`) REFERENCES `schools` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `role_has_permissions`
--
ALTER TABLE `role_has_permissions`
  ADD CONSTRAINT `role_has_permissions_permission_id_foreign` FOREIGN KEY (`permission_id`) REFERENCES `permissions` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `role_has_permissions_role_id_foreign` FOREIGN KEY (`role_id`) REFERENCES `roles` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `schools`
--
ALTER TABLE `schools`
  ADD CONSTRAINT `schools_admin_id_foreign` FOREIGN KEY (`admin_id`) REFERENCES `users` (`id`);

--
-- Constraints for table `school_settings`
--
ALTER TABLE `school_settings`
  ADD CONSTRAINT `school_settings_school_id_foreign` FOREIGN KEY (`school_id`) REFERENCES `schools` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `sections`
--
ALTER TABLE `sections`
  ADD CONSTRAINT `sections_school_id_foreign` FOREIGN KEY (`school_id`) REFERENCES `schools` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `semesters`
--
ALTER TABLE `semesters`
  ADD CONSTRAINT `semesters_school_id_foreign` FOREIGN KEY (`school_id`) REFERENCES `schools` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `session_years`
--
ALTER TABLE `session_years`
  ADD CONSTRAINT `session_years_school_id_foreign` FOREIGN KEY (`school_id`) REFERENCES `schools` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `shifts`
--
ALTER TABLE `shifts`
  ADD CONSTRAINT `shifts_school_id_foreign` FOREIGN KEY (`school_id`) REFERENCES `schools` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `sliders`
--
ALTER TABLE `sliders`
  ADD CONSTRAINT `sliders_school_id_foreign` FOREIGN KEY (`school_id`) REFERENCES `schools` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `staffs`
--
ALTER TABLE `staffs`
  ADD CONSTRAINT `staffs_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`);

--
-- Constraints for table `staff_support_schools`
--
ALTER TABLE `staff_support_schools`
  ADD CONSTRAINT `staff_support_schools_school_id_foreign` FOREIGN KEY (`school_id`) REFERENCES `schools` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `staff_support_schools_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`);

--
-- Constraints for table `streams`
--
ALTER TABLE `streams`
  ADD CONSTRAINT `streams_school_id_foreign` FOREIGN KEY (`school_id`) REFERENCES `schools` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `students`
--
ALTER TABLE `students`
  ADD CONSTRAINT `students_class_section_id_foreign` FOREIGN KEY (`class_section_id`) REFERENCES `class_sections` (`id`),
  ADD CONSTRAINT `students_guardian_id_foreign` FOREIGN KEY (`guardian_id`) REFERENCES `users` (`id`),
  ADD CONSTRAINT `students_school_id_foreign` FOREIGN KEY (`school_id`) REFERENCES `schools` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `students_session_year_id_foreign` FOREIGN KEY (`session_year_id`) REFERENCES `session_years` (`id`),
  ADD CONSTRAINT `students_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`);

--
-- Constraints for table `student_online_exam_statuses`
--
ALTER TABLE `student_online_exam_statuses`
  ADD CONSTRAINT `student_online_exam_statuses_online_exam_id_foreign` FOREIGN KEY (`online_exam_id`) REFERENCES `online_exams` (`id`),
  ADD CONSTRAINT `student_online_exam_statuses_school_id_foreign` FOREIGN KEY (`school_id`) REFERENCES `schools` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `student_online_exam_statuses_student_id_foreign` FOREIGN KEY (`student_id`) REFERENCES `users` (`id`);

--
-- Constraints for table `student_subjects`
--
ALTER TABLE `student_subjects`
  ADD CONSTRAINT `student_subjects_class_section_id_foreign` FOREIGN KEY (`class_section_id`) REFERENCES `class_sections` (`id`),
  ADD CONSTRAINT `student_subjects_class_subject_id_foreign` FOREIGN KEY (`class_subject_id`) REFERENCES `class_subjects` (`id`),
  ADD CONSTRAINT `student_subjects_school_id_foreign` FOREIGN KEY (`school_id`) REFERENCES `schools` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `student_subjects_session_year_id_foreign` FOREIGN KEY (`session_year_id`) REFERENCES `session_years` (`id`),
  ADD CONSTRAINT `student_subjects_student_id_foreign` FOREIGN KEY (`student_id`) REFERENCES `users` (`id`);

--
-- Constraints for table `subjects`
--
ALTER TABLE `subjects`
  ADD CONSTRAINT `subjects_medium_id_foreign` FOREIGN KEY (`medium_id`) REFERENCES `mediums` (`id`),
  ADD CONSTRAINT `subjects_school_id_foreign` FOREIGN KEY (`school_id`) REFERENCES `schools` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `subject_teachers`
--
ALTER TABLE `subject_teachers`
  ADD CONSTRAINT `subject_teachers_class_section_id_foreign` FOREIGN KEY (`class_section_id`) REFERENCES `class_sections` (`id`),
  ADD CONSTRAINT `subject_teachers_class_subject_id_foreign` FOREIGN KEY (`class_subject_id`) REFERENCES `class_subjects` (`id`),
  ADD CONSTRAINT `subject_teachers_school_id_foreign` FOREIGN KEY (`school_id`) REFERENCES `schools` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `subject_teachers_subject_id_foreign` FOREIGN KEY (`subject_id`) REFERENCES `subjects` (`id`),
  ADD CONSTRAINT `subject_teachers_teacher_id_foreign` FOREIGN KEY (`teacher_id`) REFERENCES `users` (`id`);

--
-- Constraints for table `subscriptions`
--
ALTER TABLE `subscriptions`
  ADD CONSTRAINT `subscriptions_package_id_foreign` FOREIGN KEY (`package_id`) REFERENCES `packages` (`id`),
  ADD CONSTRAINT `subscriptions_school_id_foreign` FOREIGN KEY (`school_id`) REFERENCES `schools` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `subscription_bills`
--
ALTER TABLE `subscription_bills`
  ADD CONSTRAINT `subscription_bills_payment_transaction_id_foreign` FOREIGN KEY (`payment_transaction_id`) REFERENCES `payment_transactions` (`id`),
  ADD CONSTRAINT `subscription_bills_school_id_foreign` FOREIGN KEY (`school_id`) REFERENCES `schools` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `subscription_bills_subscription_id_foreign` FOREIGN KEY (`subscription_id`) REFERENCES `subscriptions` (`id`);

--
-- Constraints for table `subscription_features`
--
ALTER TABLE `subscription_features`
  ADD CONSTRAINT `subscription_features_feature_id_foreign` FOREIGN KEY (`feature_id`) REFERENCES `features` (`id`),
  ADD CONSTRAINT `subscription_features_subscription_id_foreign` FOREIGN KEY (`subscription_id`) REFERENCES `subscriptions` (`id`);

--
-- Constraints for table `timetables`
--
ALTER TABLE `timetables`
  ADD CONSTRAINT `timetables_class_section_id_foreign` FOREIGN KEY (`class_section_id`) REFERENCES `class_sections` (`id`),
  ADD CONSTRAINT `timetables_school_id_foreign` FOREIGN KEY (`school_id`) REFERENCES `schools` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `timetables_semester_id_foreign` FOREIGN KEY (`semester_id`) REFERENCES `semesters` (`id`),
  ADD CONSTRAINT `timetables_subject_id_foreign` FOREIGN KEY (`subject_id`) REFERENCES `subjects` (`id`),
  ADD CONSTRAINT `timetables_subject_teacher_id_foreign` FOREIGN KEY (`subject_teacher_id`) REFERENCES `subject_teachers` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `users`
--
ALTER TABLE `users`
  ADD CONSTRAINT `users_school_id_foreign` FOREIGN KEY (`school_id`) REFERENCES `schools` (`id`) ON DELETE CASCADE;

--
-- Constraints for table `user_status_for_next_cycles`
--
ALTER TABLE `user_status_for_next_cycles`
  ADD CONSTRAINT `user_status_for_next_cycles_school_id_foreign` FOREIGN KEY (`school_id`) REFERENCES `schools` (`id`) ON DELETE CASCADE,
  ADD CONSTRAINT `user_status_for_next_cycles_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE;
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 */;
