ok
Direktori : /proc/self/root/home/ngwcolle/public_html/ |
Current File : //proc/self/root/home/ngwcolle/public_html/ngwc.sql |
-- phpMyAdmin SQL Dump -- version 5.1.1 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Generation Time: Apr 27, 2022 at 04:40 AM -- Server version: 10.4.22-MariaDB -- PHP Version: 7.4.27 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: `ofrsdb` -- -- -------------------------------------------------------- -- -- Table structure for table `tbladmin` -- CREATE TABLE `tbladmin` ( `ID` int(11) NOT NULL, `AdminName` varchar(120) DEFAULT NULL, `AdminuserName` varchar(20) NOT NULL, `MobileNumber` bigint(12) NOT NULL, `Email` varchar(120) NOT NULL, `Password` varchar(120) DEFAULT NULL, `AdminRegdate` timestamp NULL DEFAULT current_timestamp(), `userRole` int(1) DEFAULT NULL, `isActive` int(1) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `tbladmin` -- INSERT INTO `tbladmin` (`ID`, `AdminName`, `AdminuserName`, `MobileNumber`, `Email`, `Password`, `AdminRegdate`, `userRole`, `isActive`) VALUES (1, 'Admin', 'admin', 2147483647, 'sdadsa@gmail.com', 'f925916e2754e5e03f75dd58a5733251', '2022-02-24 18:30:00', NULL, 1); -- -------------------------------------------------------- -- -- Table structure for table `tblfirereport` -- CREATE TABLE `tblfirereport` ( `id` int(11) NOT NULL, `fullName` varchar(255) DEFAULT NULL, `mobileNumber` bigint(12) DEFAULT NULL, `location` mediumtext DEFAULT NULL, `messgae` mediumtext DEFAULT NULL, `assignTo` int(11) DEFAULT NULL, `status` varchar(120) DEFAULT NULL, `postingDate` timestamp NULL DEFAULT current_timestamp(), `assignTime` varchar(255) DEFAULT NULL, `assignTme` varchar(255) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `tblfirereport` -- INSERT INTO `tblfirereport` (`id`, `fullName`, `mobileNumber`, `location`, `messgae`, `assignTo`, `status`, `postingDate`, `assignTime`, `assignTme`) VALUES (1, 'Anuj Kumar', 1234567890, 'New Delhi india', 'NA', 2, 'Request Completed', '2022-04-19 14:55:50', NULL, '26-04-22 03:04:11'), (2, 'Rahul', 1425362514, 'H 23423 ABC Street Noida Sector 2 UP', 'NA', NULL, NULL, '2022-04-23 09:02:18', NULL, ''), (3, 'Amit Kumar', 4758963210, 'A 123 Sector4 Noida UP', 'Fire in Home', 2, 'Request Completed', '2022-04-27 01:46:41', NULL, '27-04-22 03:04:13'); -- -------------------------------------------------------- -- -- Table structure for table `tblfiretequesthistory` -- CREATE TABLE `tblfiretequesthistory` ( `id` int(11) NOT NULL, `requestId` int(11) DEFAULT NULL, `status` varchar(120) DEFAULT NULL, `remark` mediumtext DEFAULT NULL, `postingDate` timestamp NOT NULL DEFAULT current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data for table `tblfiretequesthistory` -- INSERT INTO `tblfiretequesthistory` (`id`, `requestId`, `status`, `remark`, `postingDate`) VALUES (1, 1, 'Team On the Way', 'Team is on the way.', '2022-04-26 01:35:35'), (2, 1, 'Fire Relief Work in Progress', 'Team work in progress.', '2022-04-26 01:42:18'), (3, 1, 'Request Completed', 'Fire controlled. Request completed', '2022-04-26 01:43:29'), (4, 3, 'Team On the Way', 'Team is on the for relief work.', '2022-04-27 01:47:48'), (5, 3, 'Fire Relief Work in Progress', 'Fire relief work in progress. Team will control the fire soon.', '2022-04-27 01:48:20'), (6, 3, 'Request Completed', 'Job FInished. Fire is under control now.', '2022-04-27 01:48:49'); -- -------------------------------------------------------- -- -- Table structure for table `tblsite` -- CREATE TABLE `tblsite` ( `id` int(11) NOT NULL, `siteTitle` varchar(255) DEFAULT NULL, `siteLogo` varchar(255) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data for table `tblsite` -- INSERT INTO `tblsite` (`id`, `siteTitle`, `siteLogo`) VALUES (1, 'OFRS', 'd29fc9cfae64c7c76f8066fa7f4919af.png'); -- -------------------------------------------------------- -- -- Table structure for table `tblteams` -- CREATE TABLE `tblteams` ( `id` int(11) NOT NULL, `teamName` varchar(255) DEFAULT NULL, `teamLeaderName` varchar(255) DEFAULT NULL, `teamLeadMobno` bigint(12) DEFAULT NULL, `teamMembers` mediumtext DEFAULT NULL, `postingDate` timestamp NULL DEFAULT current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; -- -- Dumping data for table `tblteams` -- INSERT INTO `tblteams` (`id`, `teamName`, `teamLeaderName`, `teamLeadMobno`, `teamMembers`, `postingDate`) VALUES (2, 'Team 2 ', 'John Doe', 1425362522, 'John Doe, Anuj , Atul , Shiv', '2022-04-23 07:57:39'), (3, 'Team 1', 'Anuj Kumar', 1425589632, 'Anuj, Sanjeev, Atul, Rahul', '2022-04-23 08:09:17'); -- -- Indexes for dumped tables -- -- -- Indexes for table `tbladmin` -- ALTER TABLE `tbladmin` ADD PRIMARY KEY (`ID`); -- -- Indexes for table `tblfirereport` -- ALTER TABLE `tblfirereport` ADD PRIMARY KEY (`id`); -- -- Indexes for table `tblfiretequesthistory` -- ALTER TABLE `tblfiretequesthistory` ADD PRIMARY KEY (`id`); -- -- Indexes for table `tblsite` -- ALTER TABLE `tblsite` ADD PRIMARY KEY (`id`); -- -- Indexes for table `tblteams` -- ALTER TABLE `tblteams` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `tbladmin` -- ALTER TABLE `tbladmin` MODIFY `ID` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT for table `tblfirereport` -- ALTER TABLE `tblfirereport` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT for table `tblfiretequesthistory` -- ALTER TABLE `tblfiretequesthistory` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; -- -- AUTO_INCREMENT for table `tblsite` -- ALTER TABLE `tblsite` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `tblteams` -- ALTER TABLE `tblteams` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; 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 */;