-- phpMyAdmin SQL Dump
-- version 5.2.1
-- https://www.phpmyadmin.net/
--
-- Host: localhost:3306
-- Generation Time: Mar 13, 2026 at 10:47 AM
-- Server version: 8.0.33-cll-lve
-- PHP Version: 8.1.16

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


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

--
-- Database: `diginspire_singlecg`
--

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

--
-- Table structure for table `cities`
--

CREATE TABLE `cities` (
  `id` int NOT NULL,
  `city` varchar(255) NOT NULL,
  `slug` varchar(255) NOT NULL,
  `content1` text,
  `content2` text
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;

--
-- Dumping data for table `cities`
--

INSERT INTO `cities` (`id`, `city`, `slug`, `content1`, `content2`) VALUES
(1, 'Rohtak', 'rohtak', '<h2>Explore Our City Services</h2>\r\n\r\n<p>Welcome! We offer city-specific support services with 24/7 availability and professional handling. Explore services in your area below.</p>\r\n\r\n<p>Why Choose Us?</p>\r\n\r\n<ul>\r\n	<li>24/7 Call Support</li>\r\n	<li>Experienced Local Teams</li>\r\n	<li>Instant Ticket Resolution</li>\r\n</ul>', '<h2>Explore Our City Services</h2>\r\n\r\n<p>Welcome! We offer city-specific support services with 24/7 availability and professional handling. Explore services in your area below.</p>\r\n\r\n<p>Why Choose Us?</p>\r\n\r\n<ul>\r\n	<li>24/7 Call Support</li>\r\n	<li>Experienced Local Teams</li>\r\n	<li>Instant Ticket Resolution</li>\r\n</ul>'),
(2, 'Udaipur', 'udaipur', '', '');

--
-- Indexes for dumped tables
--

--
-- Indexes for table `cities`
--
ALTER TABLE `cities`
  ADD PRIMARY KEY (`id`),
  ADD UNIQUE KEY `slug` (`slug`);

--
-- AUTO_INCREMENT for dumped tables
--

--
-- AUTO_INCREMENT for table `cities`
--
ALTER TABLE `cities`
  MODIFY `id` int NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
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 */;
