File: /var/www/html/fieldblaze-customers/fieldblaze_customer.sql
-- phpMyAdmin SQL Dump
-- version 5.2.1
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Nov 13, 2023 at 12:38 PM
-- Server version: 10.4.28-MariaDB
-- PHP Version: 8.2.4
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: `fieldblaze_customer`
--
-- --------------------------------------------------------
--
-- Table structure for table `tbl_admin`
--
CREATE TABLE `tbl_admin` (
`id` int(11) NOT NULL,
`AdminId` varchar(200) DEFAULT NULL,
`FirstName` varchar(200) DEFAULT NULL,
`LastName` varchar(200) DEFAULT NULL,
`Email` varchar(200) DEFAULT NULL,
`Mobile` varchar(200) DEFAULT NULL,
`Password` varchar(200) DEFAULT NULL,
`TempPassword` varchar(200) DEFAULT NULL,
`OtpPassword` int(11) NOT NULL DEFAULT 0,
`OtpVerified` int(11) NOT NULL DEFAULT 0,
`OtpCreatedDate` datetime NOT NULL DEFAULT current_timestamp(),
`Department` varchar(200) DEFAULT NULL,
`AboutMe` text DEFAULT NULL,
`CommunityNickname` varchar(200) DEFAULT NULL,
`WebsiteURL` varchar(255) DEFAULT NULL,
`CompanyEmail` varchar(255) DEFAULT NULL,
`Address` text DEFAULT NULL,
`City` varchar(200) DEFAULT NULL,
`Country` varchar(200) DEFAULT NULL,
`State` varchar(200) DEFAULT NULL,
`BannerPhotoUrl` text DEFAULT NULL,
`CompanyName` varchar(200) DEFAULT NULL,
`TwitterURL` varchar(255) DEFAULT NULL,
`FacebookURL` varchar(255) DEFAULT NULL,
`InstagramURL` varchar(255) DEFAULT NULL,
`LinkedinURL` varchar(255) DEFAULT NULL,
`CreatedById` varchar(200) DEFAULT NULL,
`Status` varchar(200) DEFAULT NULL,
`isActive` int(11) NOT NULL DEFAULT 0,
`EmailVerified` varchar(200) DEFAULT NULL,
`ResetKey` text DEFAULT NULL,
`RoleId` varchar(200) DEFAULT NULL,
`ProfileId` varchar(200) DEFAULT NULL,
`CrmId` varchar(200) DEFAULT NULL,
`ModifiedDate` datetime NOT NULL DEFAULT current_timestamp(),
`CreatedDate` datetime NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
--
-- Dumping data for table `tbl_admin`
--
INSERT INTO `tbl_admin` (`id`, `AdminId`, `FirstName`, `LastName`, `Email`, `Mobile`, `Password`, `TempPassword`, `OtpPassword`, `OtpVerified`, `OtpCreatedDate`, `Department`, `AboutMe`, `CommunityNickname`, `WebsiteURL`, `CompanyEmail`, `Address`, `City`, `Country`, `State`, `BannerPhotoUrl`, `CompanyName`, `TwitterURL`, `FacebookURL`, `InstagramURL`, `LinkedinURL`, `CreatedById`, `Status`, `isActive`, `EmailVerified`, `ResetKey`, `RoleId`, `ProfileId`, `CrmId`, `ModifiedDate`, `CreatedDate`) VALUES
(1, 'Gu9Ab9AL7UOow08ahHduCdmw7VQLX2TDcF6Oe', 'Super', 'Admin', 'superadmin@gmail.com', '+91-7042912244', 'eyJpdiI6IkhucTlYSkpBOHF5VjdxQThzTmxZZWc9PSIsInZhbHVlIjoiSG54QTJIbjFhbktPaVJaZTV6NHpnUT09IiwibWFjIjoiNDNjN2I5NTNkNjk1MTBjMmRjMzcwYWExMzM3ZjlmMThlMGQ4MjllYzc2ZDYxMGM1OGNjZjZmNDJjZDc0NWUzYyIsInRhZyI6IiJ9', '12345', 168116, 1, '2023-11-09 12:44:15', NULL, 'Since 2014, CloudCentric Infotech has been dedicated to helping businesses get the most out of their Salesforce implementation. With years of experience and a team of experts, CloudCentric Infotech provides full-service Salesforce consulting, advising businesses on how to use Salesforce for their unique needs and helping them connect it to their ERP and other systems.', NULL, 'https://cccinfotech.com/', 'support@cccinfotech.com', 'Sector-63, h-146-147, Noida,Uttar Pradesh', 'Noida', 'India', 'Uttar Pradesh', NULL, 'CloudCentric Infotech - Salesforce Partner', 'https://twitter.com/CCCInfotech', 'https://www.facebook.com/cloudcentricinfotech/', 'https://www.instagram.com/cccinfotech/', 'https://www.linkedin.com/company/cccinfotech/', NULL, 'Activated', 1, NULL, NULL, NULL, 'o6kuSRjPCXsXf9J3R00TMYqmUbbvI9uTCk1XH', '002009', '2023-11-09 12:44:15', '2023-11-09 12:44:15');
-- --------------------------------------------------------
--
-- Table structure for table `tbl_customer`
--
CREATE TABLE `tbl_customer` (
`id` int(11) NOT NULL,
`CustomerId` varchar(200) DEFAULT NULL,
`FirstName` varchar(200) DEFAULT NULL,
`LastName` varchar(200) DEFAULT NULL,
`Email` varchar(200) DEFAULT NULL,
`Mobile` varchar(200) DEFAULT NULL,
`Password` varchar(200) DEFAULT NULL,
`TempPassword` varchar(200) DEFAULT NULL,
`OtpPassword` int(11) NOT NULL DEFAULT 0,
`OtpVerified` int(11) NOT NULL DEFAULT 0,
`OtpCreatedDate` datetime NOT NULL DEFAULT current_timestamp(),
`Address` text DEFAULT NULL,
`City` varchar(200) DEFAULT NULL,
`Country` int(11) DEFAULT NULL,
`State` varchar(200) DEFAULT NULL,
`PostalCode` varchar(255) DEFAULT NULL,
`UserProfileImage` text DEFAULT NULL,
`CompanyName` varchar(200) DEFAULT NULL,
`CompanyCode` varchar(55) DEFAULT NULL,
`registrationDate` datetime DEFAULT NULL,
`expireDate` datetime DEFAULT NULL,
`registrationPlan` varchar(255) DEFAULT NULL,
`monthPlan` varchar(255) DEFAULT NULL,
`customerLicense` varchar(255) DEFAULT NULL,
`customerAdminURL` varchar(255) DEFAULT NULL,
`Status` varchar(200) DEFAULT NULL,
`UserType` varchar(200) DEFAULT NULL,
`isActive` int(11) NOT NULL DEFAULT 2,
`EmailVerified` varchar(200) DEFAULT NULL,
`IsDeleted` int(11) NOT NULL DEFAULT 0,
`CrmId` varchar(200) DEFAULT NULL,
`ManagerId` varchar(100) DEFAULT NULL,
`Updated_by` varchar(100) DEFAULT NULL,
`Updated_at` datetime NOT NULL DEFAULT current_timestamp(),
`ModifiedDate` datetime NOT NULL DEFAULT current_timestamp(),
`Created_by` varchar(100) DEFAULT NULL,
`Created_at` datetime NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci;
--
-- Dumping data for table `tbl_customer`
--
INSERT INTO `tbl_customer` (`id`, `CustomerId`, `FirstName`, `LastName`, `Email`, `Mobile`, `Password`, `TempPassword`, `OtpPassword`, `OtpVerified`, `OtpCreatedDate`, `Address`, `City`, `Country`, `State`, `PostalCode`, `UserProfileImage`, `CompanyName`, `CompanyCode`, `registrationDate`, `expireDate`, `registrationPlan`, `monthPlan`, `customerLicense`, `customerAdminURL`, `Status`, `UserType`, `isActive`, `EmailVerified`, `IsDeleted`, `CrmId`, `ManagerId`, `Updated_by`, `Updated_at`, `ModifiedDate`, `Created_by`, `Created_at`) VALUES
(2, 'QOyK5qSn6FPPMruBrZtPYlCI2sQpDTXtg5Avy', 'Amit', 'kumar', 'ccc@gmail.com', '9845324111', NULL, NULL, 0, 0, '2023-11-10 13:35:01', NULL, NULL, NULL, NULL, NULL, NULL, 'CCC', '002009', '2023-11-11 00:00:00', '2023-12-11 00:00:00', 'Premium', '3month', 'CCC201', 'https://cccinfotech.com', '1', NULL, 2, NULL, 0, NULL, NULL, NULL, '2023-11-10 13:35:01', '2023-11-10 13:35:01', NULL, '2023-11-10 13:35:01'),
(3, 'gHthjJE4IsxwOiKIjdNWtVWeTRMUSwMDATi9I', 'mukesh', 'khan', 'maxtra@gmail.com', '9845324234', NULL, NULL, 0, 0, '2023-11-10 13:37:40', NULL, NULL, NULL, NULL, NULL, NULL, 'Maxtra Technologies', '20981', '2023-11-11 00:00:00', '2023-11-18 00:00:00', 'Free', '1month', 'maxtra20121', 'https://maxtratechnologies.com', '0', NULL, 2, NULL, 0, NULL, NULL, NULL, '2023-11-10 13:37:40', '2023-11-10 13:37:40', NULL, '2023-11-10 13:37:40'),
(4, 'N1uXhOBpstL8AmpXciP9iHniyiZD0NYxncQMF', 'dinesh', 'singh', 'success@gmail.com', '8877660011', NULL, NULL, 0, 0, '2023-11-10 16:03:08', NULL, NULL, NULL, NULL, NULL, NULL, 'success sensation', '002008', '2023-10-20 00:00:00', '2023-11-19 00:00:00', 'Basic', '1month', 'suc13191', 'http://successsensation.com', '2', NULL, 2, NULL, 0, NULL, NULL, NULL, '2023-11-10 16:03:08', '2023-11-10 16:03:08', NULL, '2023-11-10 16:03:08'),
(5, 'ORZIF8bET9Zdpf26X08Qda2eJfUDJKOkYnJ8z', 'demo', NULL, 'subrise@gmail.com', '9876654636', NULL, NULL, 0, 0, '2023-11-13 12:40:39', NULL, NULL, NULL, NULL, NULL, NULL, 'sunrise', '232100', '2023-11-13 00:00:00', '2023-12-13 00:00:00', 'Basic', '1month', 'sunrise1299', 'http://sunrise.com', '1', NULL, 2, NULL, 1, NULL, NULL, NULL, '2023-11-13 12:40:39', '2023-11-13 12:40:39', NULL, '2023-11-13 12:40:39');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `tbl_admin`
--
ALTER TABLE `tbl_admin`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `UserId` (`AdminId`);
--
-- Indexes for table `tbl_customer`
--
ALTER TABLE `tbl_customer`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `UserId` (`CustomerId`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `tbl_admin`
--
ALTER TABLE `tbl_admin`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `tbl_customer`
--
ALTER TABLE `tbl_customer`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;
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 */;