-- phpMyAdmin SQL Dump
-- version 5.2.1
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Jan 24, 2026 at 10:27 AM
-- Server version: 10.4.32-MariaDB
-- PHP Version: 8.2.12

SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
SET time_zone = "+00:00";


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

--
-- Database: `ananddb`
--

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

--
-- Table structure for table `contacts`
--

CREATE TABLE `contacts` (
  `id` int(11) NOT NULL,
  `name` varchar(225) NOT NULL,
  `email` varchar(225) NOT NULL,
  `phone` int(225) NOT NULL,
  `message` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

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

--
-- Table structure for table `gallerys`
--

CREATE TABLE `gallerys` (
  `id` int(11) NOT NULL,
  `images` text DEFAULT NULL,
  `medias` text DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `gallerys`
--

INSERT INTO `gallerys` (`id`, `images`, `medias`) VALUES
(4, '[\"img_1769161379_8820.jpeg\",\"img_1769161379_8653.jpeg\",\"img_1769161379_8819.jpeg\",\"img_1769161379_1368.jpeg\",\"img_1769161379_9846.jpeg\",\"img_1769161379_1989.jpeg\",\"img_1769161379_9174.jpeg\"]', '[]');

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

--
-- Table structure for table `mandatorys`
--

CREATE TABLE `mandatorys` (
  `id` int(11) NOT NULL,
  `docs_name` varchar(225) NOT NULL,
  `files` text NOT NULL,
  `sections` varchar(225) NOT NULL,
  `sub_sections` varchar(225) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `mandatorys`
--

INSERT INTO `mandatorys` (`id`, `docs_name`, `files`, `sections`, `sub_sections`) VALUES
(1, 'SCHOOL CURRICULUM', '1769162779_AIIMS PROFILE (1).pdf', '1', NULL),
(2, 'SCHOOL MANAGING COMMITTEE', '1769162813_Growth Management System – Development Document.pdf', '1', NULL),
(3, 'TRANSFER CERTIFICATE SAMPLE', '1769162863_JavaScript Array.pdf', '1', NULL),
(4, 'General Information', '1769164150_GENERAL INFORMATION.pdf', '2', NULL),
(5, 'Mandatory Disclosure', '1769164714_Mandatory Disclosure 2022.pdf', '7', NULL),
(7, 'AFFILIATION LETTER', '1769231013_AIIMS PROFILE (1).pdf', '3', 'AFFILIATION_EXTENSION_LETTER'),
(8, 'EXTENSION LETTER', '1769231032_AIIMS PROFILE (1).pdf', '3', 'AFFILIATION_EXTENSION_LETTER'),
(9, 'EXTENSION LETTER 2', '1769231058_AIIMS PROFILE (1).pdf', '3', 'AFFILIATION_EXTENSION_LETTER'),
(10, 'Upgradation of Affiliation Letter', '1769231079_AIIMS PROFILE (1).pdf', '3', 'AFFILIATION_EXTENSION_LETTER'),
(11, 'Society Trust Company', '1769232031_Gms – Technical Mvc Architecture & Api Design.pdf', '3', 'SOCIETY_TRUST_REGISTRATION'),
(12, 'no objectio sertification', '1769232086_RazarPay in Laravel.pdf', '3', 'NOC'),
(13, 'RTR Cretification', '1769232123_Gms – Technical Mvc Architecture & Api Design.pdf', '3', 'RTE_CERTIFICATE'),
(14, 'BUILDING SAFETY CERTIFICATE', '1769232176_RazarPay in Laravel.pdf', '3', 'BUILDING_SAFETY'),
(15, 'FIRE SAFETY CERTIFICATE', '1769232262_JavaScript Array.pdf', '3', 'FIRE_SAFETY'),
(16, 'DEO CERTIFICATION', 'Gms – Database Relationships & Data Mapping.pdf', '3', 'DEO_SELF_CERTIFICATION'),
(17, 'SELF CERTIFICATION', '1769232509_Growth Management System – Development Document.pdf', '3', 'DEO_SELF_CERTIFICATION'),
(18, 'WATER , HEALTH & SANITATION CERTIFICATE', '1769232628_Growth Management System – Development Document.pdf', '3', 'WATER_HEALTH_SANITATION');

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

--
-- Table structure for table `notices`
--

CREATE TABLE `notices` (
  `id` int(11) NOT NULL,
  `heading` varchar(225) NOT NULL,
  `files` varchar(225) NOT NULL,
  `content` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

--
-- Dumping data for table `notices`
--

INSERT INTO `notices` (`id`, `heading`, `files`, `content`) VALUES
(1, 'Notice', '1769238097_istockphoto-604830968-612x612.jpg', 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.\r\n\r\n');

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

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

CREATE TABLE `users` (
  `id` int(11) NOT NULL,
  `name` varchar(225) DEFAULT NULL,
  `email` varchar(225) DEFAULT NULL,
  `password` varchar(225) DEFAULT NULL,
  `role` varchar(225) NOT NULL,
  `created_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(),
  `updated_at` timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

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

INSERT INTO `users` (`id`, `name`, `email`, `password`, `role`, `created_at`, `updated_at`) VALUES
(1, 'Admin', 'admin@gmail.com', '$2y$10$S9RpDD/B6kxQs7ukM3mlH.hbFB8t.zneDkNbdTy8SC2O9jOx3xpia', 'admin', '2026-01-23 05:08:14', '2026-01-23 05:08:14');

--
-- Indexes for dumped tables
--

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

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

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

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

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

--
-- AUTO_INCREMENT for dumped tables
--

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

--
-- AUTO_INCREMENT for table `gallerys`
--
ALTER TABLE `gallerys`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;

--
-- AUTO_INCREMENT for table `mandatorys`
--
ALTER TABLE `mandatorys`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=19;

--
-- AUTO_INCREMENT for table `notices`
--
ALTER TABLE `notices`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;

--
-- AUTO_INCREMENT for table `users`
--
ALTER TABLE `users`
  MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
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 */;
