-- phpMyAdmin SQL Dump
-- version 5.2.2
-- https://www.phpmyadmin.net/
--
-- Host: localhost:3306
-- Generation Time: Aug 14, 2025 at 09:27 PM
-- Server version: 8.0.42-cll-lve
-- PHP Version: 8.3.23

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

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

--
-- Table structure for table `website_proposals`
--

CREATE TABLE `website_proposals` (
  `id` int NOT NULL,
  `user_code` varchar(20) DEFAULT NULL,
  `client_name` varchar(120) DEFAULT NULL,
  `company_name` varchar(160) DEFAULT NULL,
  `email` varchar(160) NOT NULL,
  `phone` varchar(40) DEFAULT NULL,
  `website` varchar(200) DEFAULT NULL,
  `project_desc` text,
  `budget_range` varchar(50) DEFAULT NULL,
  `timeline` varchar(50) DEFAULT NULL,
  `subtotal` decimal(10,2) NOT NULL DEFAULT '0.00',
  `addons_total` decimal(10,2) NOT NULL DEFAULT '0.00',
  `grand_total` decimal(10,2) NOT NULL DEFAULT '0.00',
  `created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;

--
-- Dumping data for table `website_proposals`
--

INSERT INTO `website_proposals` (`id`, `user_code`, `client_name`, `company_name`, `email`, `phone`, `website`, `project_desc`, `budget_range`, `timeline`, `subtotal`, `addons_total`, `grand_total`, `created_at`) VALUES
(1, '8705-1424-5601-8643', 'Winston Small', 'Hands-On Media Services', 'smallwinston@gmail.com', '917-226-8643', '', 'Need a website', '$3,000–$5,000', 'Flexible (3–6 months)', 19600.00, 750.00, 20350.00, '2025-08-14 23:57:47'),
(2, '8705-1424-5601-8643', 'Winston Small', 'Hands-On Media Services', 'smallwinston@gmail.com', '917-226-8643', '', 'Need a website', '$3,000–$5,000', 'Flexible (3–6 months)', 19600.00, 750.00, 20350.00, '2025-08-15 00:01:38'),
(3, '8705-1424-5601-8643', 'Winston Small', 'Hands-On Media Services', 'smallwinston@gmail.com', '917-226-8643', '', 'Need a website', '$3,000–$5,000', 'Flexible (3–6 months)', 19600.00, 750.00, 20350.00, '2025-08-15 00:04:43');

--
-- Indexes for dumped tables
--

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

--
-- AUTO_INCREMENT for dumped tables
--

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