Your IP : 216.73.216.40


Current Path : /var/www/html/mmishra/iws8_sql/
Upload File :
Current File : /var/www/html/mmishra/iws8_sql/iport.sql

-- phpMyAdmin SQL Dump
-- version 4.5.2
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Feb 05, 2018 at 06:51 AM
-- Server version: 10.0.21-MariaDB
-- PHP Version: 5.6.15

SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
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: `iport`
--

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

--
-- Table structure for table `t_attachments`
--

CREATE TABLE `t_attachments` (
  `rowID` int(5) NOT NULL,
  `objectID` int(5) NOT NULL,
  `objectName` varchar(25) NOT NULL,
  `description` varchar(255) NOT NULL,
  `fileName` varchar(255) NOT NULL,
  `dateCreation` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `dateUpdation` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `status` varchar(10) NOT NULL,
  `loginID` varchar(10) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

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

--
-- Table structure for table `t_commuters`
--

CREATE TABLE `t_commuters` (
  `rowID` int(4) NOT NULL,
  `fullName` varchar(50) NOT NULL,
  `designation` varchar(50) NOT NULL,
  `email` varchar(50) NOT NULL,
  `phoneHome` varchar(10) NOT NULL,
  `phoneOffice` varchar(10) NOT NULL,
  `phoneCell` varchar(10) NOT NULL,
  `address` varchar(255) NOT NULL,
  `photograph` varchar(100) NOT NULL,
  `dateCreation` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `dateUpdation` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `loginID` varchar(10) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Dumping data for table `t_commuters`
--

INSERT INTO `t_commuters` (`rowID`, `fullName`, `designation`, `email`, `phoneHome`, `phoneOffice`, `phoneCell`, `address`, `photograph`, `dateCreation`, `dateUpdation`, `loginID`) VALUES
(1, 'Dr. M.K. Mishra', 'System Analyst', 'mmishra@iiita.ac.in', '2922601', '2922011', '9450952584', 'D-1, IIITA Campus\r\nDevghat, Jhalwa\r\nAllahabad-211015', 'mm40.jpg', '2017-08-17 13:06:34', '2017-12-19 10:56:44', 'mmishra');

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

--
-- Table structure for table `t_drivers`
--

CREATE TABLE `t_drivers` (
  `rowID` int(2) NOT NULL,
  `driverName` varchar(50) NOT NULL,
  `licenseNo` varchar(25) NOT NULL,
  `dateRenewal` date NOT NULL,
  `phoneNo` varchar(10) NOT NULL,
  `address` varchar(255) NOT NULL,
  `emergencyNo` varchar(10) NOT NULL,
  `photograph` varchar(255) NOT NULL,
  `dateCreation` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `dateUpdation` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `loginID` varchar(10) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Dumping data for table `t_drivers`
--

INSERT INTO `t_drivers` (`rowID`, `driverName`, `licenseNo`, `dateRenewal`, `phoneNo`, `address`, `emergencyNo`, `photograph`, `dateCreation`, `dateUpdation`, `loginID`) VALUES
(1, 'Kuldeep Singh', '12345', '2018-01-15', '12345', 'A-4, IIITA Campus\r\nDevghat, Jhalwa\r\nAllahabad', '999999', 'kuldeep.jpg', '2017-08-17 13:06:34', '2018-01-15 07:13:59', 'mmishra'),
(5, 'Satish Kumar', '123456', '2018-02-01', '123456', 'A-1, IIITA Campus\r\nDevghat, Jhalwa\r\nAllahabad-211015', '123456', 'dummy.jpg', '2018-02-01 10:46:38', '2018-02-01 05:16:38', 'mmishra'),
(6, 'Narayan Tiwari', '1234567', '2018-02-01', '1234567', 'A-2, IIITA Campus\r\nDevghat, Jhalwa\r\nAllahabad-211015', '1234567', 'dummy.jpg', '2018-02-01 10:48:35', '2018-02-01 05:19:08', 'mmishra');

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

--
-- Table structure for table `t_dutyroster`
--

CREATE TABLE `t_dutyroster` (
  `rowID` int(2) NOT NULL,
  `vehicleID` int(5) NOT NULL,
  `driverID` int(5) NOT NULL,
  `helperID` int(5) NOT NULL,
  `timeStart` time NOT NULL,
  `timeClose` time NOT NULL,
  `dateFrom` date NOT NULL,
  `dateCreation` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `dateUpdation` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `loginID` varchar(10) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Dumping data for table `t_dutyroster`
--

INSERT INTO `t_dutyroster` (`rowID`, `vehicleID`, `driverID`, `helperID`, `timeStart`, `timeClose`, `dateFrom`, `dateCreation`, `dateUpdation`, `loginID`) VALUES
(1, 1, 5, 1, '06:00:00', '14:00:00', '2018-01-01', '2017-08-17 13:06:34', '2018-02-01 05:17:19', 'mmishra'),
(10, 2, 6, 1, '14:00:00', '22:00:00', '2018-02-01', '2018-01-14 21:12:22', '2018-02-01 05:18:49', 'mmishra'),
(11, 3, 1, 1, '00:00:00', '00:00:00', '2018-01-31', '2018-01-31 15:33:59', '2018-01-31 10:03:59', 'mmishra');

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

--
-- Table structure for table `t_feedbacks`
--

CREATE TABLE `t_feedbacks` (
  `rowID` int(5) NOT NULL,
  `message` varchar(500) NOT NULL,
  `dateCreation` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `dateUpdation` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `loginID` varchar(10) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Dumping data for table `t_feedbacks`
--

INSERT INTO `t_feedbacks` (`rowID`, `message`, `dateCreation`, `dateUpdation`, `loginID`) VALUES
(1, 'aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaa', '2017-10-11 17:11:56', '2017-12-19 12:03:03', 'mmishra'),
(2, 'The input type="range" defines a control for entering a number whose exact value is not important (like a slider control). Default range is 0 to 100. However, you can set restrictions on what numbers are accepted with the min, max, and step attributes:', '2017-10-11 17:11:41', '2017-12-19 12:03:11', 'mmishra'),
(3, 'While text editors support many languages alongside Python, PyCharm is unique in the power it brings beyond Python. For example, PyCharm is a first-class web development IDE. It doesn’t just syntax-highlighting and autocomplete HTML, CSS, and JavaScript. It provides the full spectrum of features: semantically-aware code inspection, refactoring, debugging, launching a live server, translating SASS files to CSS, browsing npm run scripts, etc.', '2017-10-11 17:14:22', '2017-12-19 12:03:20', 'mmishra'),
(4, '', '2018-01-30 20:10:44', '2018-01-30 14:40:44', 'mmishra'),
(5, 'this is a test feedback.', '2018-01-30 20:11:17', '2018-01-30 14:41:17', 'mmishra');

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

--
-- Table structure for table `t_helpers`
--

CREATE TABLE `t_helpers` (
  `rowID` int(2) NOT NULL,
  `helperName` varchar(50) NOT NULL,
  `licenseNo` varchar(25) NOT NULL,
  `dateRenewal` date NOT NULL,
  `phoneNo` int(10) NOT NULL,
  `address` varchar(255) NOT NULL,
  `emergencyNo` int(10) NOT NULL,
  `photograph` varchar(255) NOT NULL,
  `dateCreation` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `dateUpdation` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `loginID` varchar(10) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Dumping data for table `t_helpers`
--

INSERT INTO `t_helpers` (`rowID`, `helperName`, `licenseNo`, `dateRenewal`, `phoneNo`, `address`, `emergencyNo`, `photograph`, `dateCreation`, `dateUpdation`, `loginID`) VALUES
(1, 'Mannu Lal', '12345', '2017-08-17', 12345, 'A-4, IIITA Campus\r\nDevghat, Jhalwa\r\nAllahabad', 999999, 'dummy.jpg', '2017-08-17 13:06:34', '2018-02-01 05:00:38', 'mmishra');

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

--
-- Table structure for table `t_holidays`
--

CREATE TABLE `t_holidays` (
  `rowID` int(5) NOT NULL,
  `wardID` int(4) NOT NULL,
  `dateStart` date NOT NULL,
  `dateClose` date NOT NULL,
  `reason` varchar(100) NOT NULL,
  `dateCreation` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `dateUpdation` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `loginID` varchar(10) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Dumping data for table `t_holidays`
--

INSERT INTO `t_holidays` (`rowID`, `wardID`, `dateStart`, `dateClose`, `reason`, `dateCreation`, `dateUpdation`, `loginID`) VALUES
(1, 1, '2017-11-04', '2017-11-04', 'xxxxxxxxx vvvvvvvvvvvv bbbbbbbbbbbbbbbbb', '2017-10-11 17:11:49', '2018-01-13 12:02:47', 'mmishra'),
(2, 2, '2018-01-01', '2018-01-15', 'Winter vacation', '2017-10-11 17:11:56', '2018-01-15 11:24:47', 'mmishra'),
(3, 1, '2017-11-15', '0000-00-00', 'test test test mmmmmmmmmmmmmmmmmmmmmmmm', '2017-10-11 17:11:41', '2017-11-27 12:00:29', ''),
(4, 2, '2017-11-08', '0000-00-00', 'test', '2017-10-11 17:14:22', '2017-11-27 12:00:33', '');

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

--
-- Table structure for table `t_refillings`
--

CREATE TABLE `t_refillings` (
  `rowID` int(5) NOT NULL,
  `dateRefilling` date DEFAULT NULL,
  `vehicleID` int(5) NOT NULL,
  `kmReading` int(11) NOT NULL,
  `ltrFuel` decimal(6,2) NOT NULL DEFAULT '0.00',
  `amount` decimal(7,2) NOT NULL,
  `dateCreation` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `dateUpdation` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `loginID` varchar(10) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Dumping data for table `t_refillings`
--

INSERT INTO `t_refillings` (`rowID`, `dateRefilling`, `vehicleID`, `kmReading`, `ltrFuel`, `amount`, `dateCreation`, `dateUpdation`, `loginID`) VALUES
(1, '2017-11-24', 1, 100, '1000.00', '60000.00', '2017-08-17 13:06:34', '2018-01-31 18:42:36', 'mmishra'),
(2, '2017-11-24', 2, 200, '550.00', '33000.00', '2017-09-07 16:52:26', '2018-01-31 18:42:59', 'mmishra');

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

--
-- Table structure for table `t_repairings`
--

CREATE TABLE `t_repairings` (
  `rowID` int(5) NOT NULL,
  `dateRepairing` date DEFAULT NULL,
  `vehicleID` int(5) NOT NULL,
  `fault` varchar(500) NOT NULL,
  `workshop` varchar(100) NOT NULL,
  `amount` decimal(7,2) NOT NULL DEFAULT '0.00',
  `dateCreation` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `dateUpdation` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `loginID` varchar(10) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Dumping data for table `t_repairings`
--

INSERT INTO `t_repairings` (`rowID`, `dateRepairing`, `vehicleID`, `fault`, `workshop`, `amount`, `dateCreation`, `dateUpdation`, `loginID`) VALUES
(1, '2017-11-24', 1, 'aaa', 'bbbbb', '1000.00', '2017-08-17 13:06:34', '2018-01-14 17:23:17', 'mmishra'),
(2, '2017-11-24', 2, 'zzzz', 'Tata Motors Allahabad', '550.00', '2017-09-07 16:52:26', '2018-01-14 17:23:39', 'mmishra');

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

--
-- Table structure for table `t_requisitions`
--

CREATE TABLE `t_requisitions` (
  `rowID` int(2) NOT NULL,
  `purpose` enum('Official','Personal') NOT NULL DEFAULT 'Official',
  `dateBoarding` datetime NOT NULL,
  `boardingPlace` varchar(100) NOT NULL,
  `dateReaching` datetime NOT NULL,
  `reachingPlace` varchar(100) NOT NULL,
  `kmDistance` int(3) NOT NULL DEFAULT '0',
  `passengers` varchar(255) NOT NULL,
  `vehicleID` int(2) NOT NULL,
  `tripSharing` enum('Yes','No') NOT NULL DEFAULT 'No',
  `kmCharge` int(3) NOT NULL DEFAULT '0',
  `amount` decimal(6,2) NOT NULL,
  `remark` varchar(255) NOT NULL,
  `dateCreation` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `dateUpdation` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `status` enum('Pending','Confirmed','Cencelled','Performed','Regretted') NOT NULL DEFAULT 'Pending',
  `loginID` varchar(10) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Dumping data for table `t_requisitions`
--

INSERT INTO `t_requisitions` (`rowID`, `purpose`, `dateBoarding`, `boardingPlace`, `dateReaching`, `reachingPlace`, `kmDistance`, `passengers`, `vehicleID`, `tripSharing`, `kmCharge`, `amount`, `remark`, `dateCreation`, `dateUpdation`, `status`, `loginID`) VALUES
(1, 'Personal', '2018-01-17 17:45:00', 'D1', '2018-01-17 17:45:00', 'Local city', 10, 'two', 3, 'Yes', 0, '0.00', 'D1', '2017-07-30 02:17:39', '2018-02-02 10:39:23', 'Regretted', 'mmishra'),
(3, 'Personal', '2017-08-17 07:30:00', 'Station', '2017-11-27 07:30:00', 'Campus', 45, 'Dr. M.K. Mishra', 3, 'No', 100, '850.00', 'test', '2017-08-17 17:57:42', '2018-01-29 12:12:44', 'Performed', 'mmishra'),
(5, 'Official', '2018-01-29 08:30:00', 'D-1, Campus', '2018-01-29 09:00:00', 'Railway Station', 10, 'One (myself)', 3, 'No', 0, '0.00', 'test', '2018-01-29 12:49:35', '2018-02-02 10:39:28', 'Confirmed', 'mmishra');

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

--
-- Table structure for table `t_routes`
--

CREATE TABLE `t_routes` (
  `rowID` int(2) NOT NULL,
  `routeID` varchar(10) NOT NULL,
  `startPoint` varchar(25) NOT NULL,
  `midStopages` varchar(255) NOT NULL,
  `finishPoint` varchar(25) NOT NULL,
  `kmDistance` decimal(5,2) NOT NULL,
  `mnDuration` int(11) NOT NULL,
  `routeMap` varchar(255) NOT NULL,
  `dateCreation` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `dateUpdation` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `loginID` varchar(10) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Dumping data for table `t_routes`
--

INSERT INTO `t_routes` (`rowID`, `routeID`, `startPoint`, `midStopages`, `finishPoint`, `kmDistance`, `mnDuration`, `routeMap`, `dateCreation`, `dateUpdation`, `loginID`) VALUES
(1, 'route#1', 'IIITA Campus', 'Jhalwa > Rajrupur > Chauphataka > High Court > UPSC > Hathi Park', 'Vigyan Parisad', '12.00', 45, 'jhalwa-parishad.png', '2017-08-17 16:09:18', '2018-02-01 05:09:53', 'mmishra'),
(2, 'route#2', 'Vigyan Parishad', 'Hathi Park > UPSC > High Court > Caufataka > Rajruppur > Jhalwa', 'IIITA Campus', '12.00', 50, 'parishad-jhalwa.png', '2017-08-17 16:14:24', '2018-02-01 05:10:06', 'mmishra');

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

--
-- Table structure for table `t_runnings`
--

CREATE TABLE `t_runnings` (
  `rowID` int(5) NOT NULL,
  `dateRunning` date DEFAULT NULL,
  `vehicleID` int(5) NOT NULL,
  `kmStart` int(11) NOT NULL,
  `kmEnd` int(11) NOT NULL,
  `kmRunning` decimal(6,2) NOT NULL DEFAULT '0.00',
  `dateCreation` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `dateUpdation` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `loginID` varchar(10) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Dumping data for table `t_runnings`
--

INSERT INTO `t_runnings` (`rowID`, `dateRunning`, `vehicleID`, `kmStart`, `kmEnd`, `kmRunning`, `dateCreation`, `dateUpdation`, `loginID`) VALUES
(1, '2017-11-24', 1, 100, 200, '100.00', '2017-08-17 13:06:34', '2018-01-31 18:23:52', 'mmishra'),
(2, '2017-11-24', 2, 250, 325, '75.00', '2017-09-07 16:52:26', '2018-01-31 18:27:54', 'mmishra');

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

--
-- Table structure for table `t_schedules`
--

CREATE TABLE `t_schedules` (
  `rowID` int(2) NOT NULL,
  `commuter` varchar(10) NOT NULL,
  `timeStart` time NOT NULL,
  `vehicleID` varchar(2) NOT NULL,
  `routeID` int(2) NOT NULL,
  `dateCreation` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `dateUpdation` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `status` enum('Running','Suspended','Cancelled') NOT NULL DEFAULT 'Running',
  `loginID` varchar(10) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Dumping data for table `t_schedules`
--

INSERT INTO `t_schedules` (`rowID`, `commuter`, `timeStart`, `vehicleID`, `routeID`, `dateCreation`, `dateUpdation`, `status`, `loginID`) VALUES
(1, 'School', '06:05:00', '1', 1, '2017-08-18 17:03:17', '2018-01-31 10:34:45', 'Running', 'mmishra'),
(2, 'School', '07:15:00', '2', 2, '2017-08-18 18:02:12', '2018-01-31 10:34:49', 'Running', 'mmishra'),
(3, 'Employee', '00:00:00', '3', 2, '2018-01-31 16:09:05', '2018-01-31 10:39:05', 'Running', 'mmishra');

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

--
-- Table structure for table `t_schools`
--

CREATE TABLE `t_schools` (
  `rowID` int(2) NOT NULL,
  `schoolName` varchar(255) NOT NULL,
  `phoneNo` int(10) NOT NULL,
  `address` varchar(255) NOT NULL,
  `kmDistance` int(2) NOT NULL DEFAULT '5',
  `photograph` varchar(255) NOT NULL,
  `dateCreation` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `dateUpdation` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `loginID` varchar(10) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Dumping data for table `t_schools`
--

INSERT INTO `t_schools` (`rowID`, `schoolName`, `phoneNo`, `address`, `kmDistance`, `photograph`, `dateCreation`, `dateUpdation`, `loginID`) VALUES
(1, 'St. Marys Convent Inter College', 123456, 'Thornhill Road\r\nAllahabad', 12, 'smc1.jpg', '2017-08-18 11:57:23', '2018-01-29 12:26:44', 'mmishra'),
(2, 'St. Mary Convent School', 123456, 'Thornhill Road\r\nAllahabad', 11, 'smc2.jpg', '2017-08-18 12:25:20', '2018-01-29 12:26:49', 'mmishra'),
(3, 'Khelgaon Public School', 123456, 'Khelgaon\r\nAllahabad-211015', 3, 'kps.jpg', '2018-02-01 10:56:49', '2018-02-01 05:26:49', 'mmishra'),
(4, 'Maharshi Patanjali Vidya Mandir', 1234567, 'Telierganj\r\nAllahabad', 15, 'mpv.jpg', '2018-02-01 10:58:53', '2018-02-01 05:28:53', 'mmishra'),
(5, 'YMC Allahabad ', 1234567, 'Civil Lines\r\nAllahabad', 6, 'ymca.jpg', '2018-02-01 11:03:05', '2018-02-01 05:33:05', 'mmishra'),
(6, 'Little Hearts Convent School', 12345678, 'Beli Road\r\nAllahabad', 12, 'lhc.jpg', '2018-02-01 11:04:30', '2018-02-01 05:34:30', 'mmishra');

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

--
-- Table structure for table `t_schooltimings`
--

CREATE TABLE `t_schooltimings` (
  `rowID` int(5) NOT NULL,
  `wardID` int(4) NOT NULL,
  `timeOpen` time NOT NULL,
  `timeClose` time NOT NULL,
  `timeSpecial` time NOT NULL,
  `dateFrom` date NOT NULL,
  `remark` varchar(255) NOT NULL,
  `dateCreation` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `dateUpdation` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `loginID` varchar(10) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Dumping data for table `t_schooltimings`
--

INSERT INTO `t_schooltimings` (`rowID`, `wardID`, `timeOpen`, `timeClose`, `timeSpecial`, `dateFrom`, `remark`, `dateCreation`, `dateUpdation`, `loginID`) VALUES
(1, 1, '07:20:00', '01:30:00', '12:40:00', '2018-01-17', '', '2017-08-17 13:06:34', '2018-01-15 11:33:40', 'mmishra'),
(2, 2, '07:20:00', '01:20:00', '12:30:00', '2018-01-15', '', '2017-09-07 16:52:26', '2018-01-15 11:33:26', 'mmishra');

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

--
-- Table structure for table `t_sysconfig`
--

CREATE TABLE `t_sysconfig` (
  `rowID` int(11) NOT NULL,
  `kmRate` decimal(4,2) DEFAULT '0.00',
  `facultyEmail` varchar(50) NOT NULL,
  `officerEmail` varchar(50) NOT NULL,
  `staffEmail` varchar(50) NOT NULL,
  `autoEmail` enum('Yes','No') NOT NULL DEFAULT 'No',
  `dateCreation` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `dateUpdation` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `loginID` varchar(10) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Dumping data for table `t_sysconfig`
--

INSERT INTO `t_sysconfig` (`rowID`, `kmRate`, `facultyEmail`, `officerEmail`, `staffEmail`, `autoEmail`, `dateCreation`, `dateUpdation`, `loginID`) VALUES
(1, '8.50', 'sk.singh@iiita.ac.in', 'lnsharma@iiita.ac.in', 'abhishekkr@iiita.ac.in', 'Yes', '2018-01-14 08:32:05', '2018-02-02 05:44:54', 'mmishra');

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

--
-- Table structure for table `t_vehicles`
--

CREATE TABLE `t_vehicles` (
  `rowID` int(2) NOT NULL,
  `vehicleID` varchar(10) NOT NULL,
  `registrationNo` varchar(10) NOT NULL,
  `dateRegistration` date NOT NULL,
  `modelMake` varchar(50) NOT NULL,
  `seatingCapacity` int(2) NOT NULL,
  `photograph` varchar(255) NOT NULL,
  `remark` varchar(255) NOT NULL,
  `dateCreation` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `dateUpdation` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `loginID` varchar(10) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Dumping data for table `t_vehicles`
--

INSERT INTO `t_vehicles` (`rowID`, `vehicleID`, `registrationNo`, `dateRegistration`, `modelMake`, `seatingCapacity`, `photograph`, `remark`, `dateCreation`, `dateUpdation`, `loginID`) VALUES
(1, 'B1', 'UP70T9873', '2011-02-02', 'Airbus', 50, 'b1.jpg', 'IIIT Allahabad', '2017-07-30 02:17:39', '2017-08-18 12:11:12', 'mmishra'),
(2, 'B2', 'UP70BT0387', '2017-08-01', 'xxx', 60, 'b2.jpg', 'test', '2017-07-30 03:26:39', '2018-01-13 15:12:48', 'mmishra'),
(3, 'T1', 'UP70AU9511', '2017-08-17', 'Tavera', 10, 't1.jpg', 'IIIT Allahabad', '2017-08-17 17:57:42', '2017-08-17 12:30:29', 'mmishra');

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

--
-- Table structure for table `t_wards`
--

CREATE TABLE `t_wards` (
  `rowID` int(4) NOT NULL,
  `parentID` varchar(10) NOT NULL,
  `schoolID` int(4) NOT NULL,
  `classSection` varchar(5) NOT NULL,
  `wardName` varchar(50) NOT NULL,
  `gender` enum('Male','Female') NOT NULL DEFAULT 'Female',
  `photograph` varchar(255) NOT NULL,
  `dateCreation` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `dateUpdation` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `loginID` varchar(10) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Dumping data for table `t_wards`
--

INSERT INTO `t_wards` (`rowID`, `parentID`, `schoolID`, `classSection`, `wardName`, `gender`, `photograph`, `dateCreation`, `dateUpdation`, `loginID`) VALUES
(1, 'mmishra', 1, '10 A', 'Sejal Mishra', 'Female', 'sejal.jpg', '2017-08-17 13:06:34', '2018-01-13 05:22:34', 'mmishra'),
(2, 'mmishra', 2, '2 A', 'Jesal Mishra', 'Female', 'jesal.jpg', '2017-09-07 16:52:26', '2018-01-13 05:10:22', 'mmishra');

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

--
-- Table structure for table `weblogs`
--

CREATE TABLE `weblogs` (
  `userID` varchar(10) NOT NULL DEFAULT 'guest',
  `referer` varchar(255) DEFAULT 'index.php',
  `webURL` varchar(255) DEFAULT NULL,
  `remoteIP` varchar(15) NOT NULL DEFAULT '',
  `dateAccess` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `weblogs`
--

INSERT INTO `weblogs` (`userID`, `referer`, `webURL`, `remoteIP`, `dateAccess`) VALUES
('', '', '', '172.31.1.101', '2018-02-01 12:58:05'),
('', 'https://iport.iiita.ac.in/', '', '172.31.1.101', '2018-02-01 12:58:20'),
('', 'https://iport.iiita.ac.in/?pg=schooltiming', '/', '172.31.1.101', '2018-02-01 13:04:39'),
('', 'https://iport.iiita.ac.in/?pg=weblogs', '/', '172.31.1.32', '2018-02-01 00:51:59'),
('', 'https://iport.iiita.ac.in/', '', '172.31.1.32', '2018-02-01 00:52:11'),
('', 'https://iport.iiita.ac.in/?pg=weblogs', '/', '172.31.1.32', '2018-02-01 00:53:09'),
('', 'https://iport.iiita.ac.in/', '/', '172.31.1.32', '2018-02-01 10:20:56'),
('', 'https://iport.iiita.ac.in/?pg=usersessions', '', '172.31.1.32', '2018-02-01 10:21:06'),
('', '', '/', '172.31.1.32', '2018-02-01 16:29:39'),
('', 'https://iport.iiita.ac.in/?pg=requisition', '/', '172.31.1.32', '2018-02-01 16:30:04'),
('', 'https://iport.iiita.ac.in/?pg=wregistration', '/', '172.31.1.32', '2018-02-01 16:30:09'),
('', 'https://iport.iiita.ac.in/?pg=schooltiming', '/', '172.31.1.32', '2018-02-01 16:30:15'),
('', 'https://iport.iiita.ac.in/?pg=holidaynotice', '/', '172.31.1.32', '2018-02-01 16:30:22'),
('', 'https://iport.iiita.ac.in/?pg=schooltiming', '/', '172.31.1.32', '2018-02-01 16:30:39'),
('', 'https://iport.iiita.ac.in/?pg=requisition', '/', '172.31.1.32', '2018-02-01 16:30:40'),
('', '', '', '172.31.1.32', '2018-02-01 16:35:21'),
('', 'https://iport.iiita.ac.in/', '', '172.31.1.32', '2018-02-01 16:35:33'),
('', 'https://iport.iiita.ac.in/?pg=changepwd', '/', '172.31.1.32', '2018-02-01 16:41:47'),
('', 'https://iport.iiita.ac.in/?pg=requisition&rowID=5', '/', '172.31.1.32', '2018-02-01 17:29:12'),
('', 'https://iport.iiita.ac.in/?pg=vehicle', '/', '172.31.1.32', '2018-02-01 17:30:07'),
('', 'https://iport.iiita.ac.in/?pg=vehicle&rowID=1', '', '172.31.1.32', '2018-02-01 17:30:12'),
('', 'https://iport.iiita.ac.in/index.php', '/', '172.31.1.32', '2018-02-01 17:32:39'),
('', 'https://iport.iiita.ac.in/?pg=vehicle&rowID=2', '', '172.31.1.32', '2018-02-01 17:35:09'),
('', '', '/', '172.31.1.32', '2018-02-02 09:48:54'),
('', 'https://iport.iiita.ac.in/?pg=requisition', '', '172.31.1.32', '2018-02-02 09:49:00'),
('', '', '/', '172.31.1.32', '2018-02-02 09:49:04'),
('', 'https://iport.iiita.ac.in/', '/', '172.31.1.32', '2018-02-02 11:58:24'),
('', 'https://iport.iiita.ac.in/', '', '172.31.1.32', '2018-02-02 11:59:05'),
('', 'https://iport.iiita.ac.in/', '', '172.31.1.32', '2018-02-02 11:59:06'),
('', 'https://iport.iiita.ac.in/', '', '172.31.1.32', '2018-02-02 11:59:36'),
('', 'https://iport.iiita.ac.in/', '', '172.31.1.32', '2018-02-02 12:00:34'),
('', 'https://iport.iiita.ac.in/', '/', '172.31.1.32', '2018-02-02 12:00:37'),
('', 'https://iport.iiita.ac.in/?pg=&rowID=1', '/', '172.31.1.32', '2018-02-02 12:00:38'),
('', 'https://iport.iiita.ac.in/?pg=&rowID=2', '/', '172.31.1.32', '2018-02-02 12:01:39'),
('', 'https://iport.iiita.ac.in/?pg=&rowID=2', '/', '172.31.1.32', '2018-02-02 12:01:53'),
('', 'https://iport.iiita.ac.in/?pg=&rowID=2', '/', '172.31.1.32', '2018-02-02 12:03:36'),
('', 'https://iport.iiita.ac.in/?pg=&rowID=3', '', '172.31.1.32', '2018-02-02 15:29:14'),
('', '', '/', '172.31.1.5', '2018-02-01 19:08:31'),
('', '', '', '172.31.1.6', '2018-02-01 14:14:52'),
('', 'https://iport.iiita.ac.in/', '', '172.31.1.6', '2018-02-01 14:15:16'),
('abhinaba', 'https://itransport.iiita.ac.in/', '', '172.31.1.32', '2018-01-15 11:36:05'),
('abhinaba', 'https://itransport.iiita.ac.in/', 'index.php', '172.31.1.32', '2018-01-15 11:36:16'),
('abhinaba', 'https://itransport.iiita.ac.in/?pg=dutyroster', 'index.php', '172.31.1.32', '2018-01-15 11:36:33'),
('abhinaba', 'https://itransport.iiita.ac.in/?pg=sysconfig', 'index.php', '172.31.1.32', '2018-01-15 11:37:58'),
('abhinaba', 'https://itransport.iiita.ac.in/?pg=vehicle', 'index.php', '172.31.1.32', '2018-01-15 11:38:18'),
('abhinaba', 'https://itransport.iiita.ac.in/?pg=vehicle&rowID=2', 'index.php', '172.31.1.32', '2018-01-15 11:38:22'),
('abhinaba', 'https://itransport.iiita.ac.in/?pg=vehicle&rowID=3', 'index.php', '172.31.1.32', '2018-01-15 11:38:45'),
('abhinaba', 'https://itransport.iiita.ac.in/?pg=driver', 'index.php', '172.31.1.32', '2018-01-15 11:38:49'),
('abhinaba', 'https://itransport.iiita.ac.in/?pg=driver', 'index.php', '172.31.1.32', '2018-01-15 11:38:52'),
('abhinaba', 'https://itransport.iiita.ac.in/?pg=driver&rowID=1', '', '172.31.1.32', '2018-01-15 11:38:58'),
('abhinaba', 'https://itransport.iiita.ac.in/index.php', 'index.php', '172.31.1.32', '2018-01-15 11:39:03'),
('abhinaba', 'https://itransport.iiita.ac.in/?pg=helper', 'index.php', '172.31.1.32', '2018-01-15 11:39:10'),
('abhinaba', 'https://itransport.iiita.ac.in/?pg=route', 'index.php', '172.31.1.32', '2018-01-15 11:39:18'),
('abhinaba', 'https://itransport.iiita.ac.in/?pg=school', 'index.php', '172.31.1.32', '2018-01-15 11:39:35'),
('abhinaba', 'https://itransport.iiita.ac.in/?pg=requisition', '', '172.31.1.32', '2018-01-15 11:42:45'),
('abhinaba', 'https://itransport.iiita.ac.in/index.php', '', '172.31.1.32', '2018-01-15 11:42:52'),
('abhinaba', 'https://itransport.iiita.ac.in/index.php', '', '172.31.1.32', '2018-01-15 11:42:57'),
('abhinaba', 'https://itransport.iiita.ac.in/index.php', 'index.php', '172.31.1.32', '2018-01-15 11:43:03'),
('abhinaba', 'https://itransport.iiita.ac.in/?pg=cancellation', 'index.php', '172.31.1.32', '2018-01-15 11:43:35'),
('abhinaba', 'https://itransport.iiita.ac.in/?pg=cancellation', 'index.php', '172.31.1.32', '2018-01-15 11:43:38'),
('abhinaba', 'https://itransport.iiita.ac.in/?pg=wregistration', '', '172.31.1.32', '2018-01-15 11:43:47'),
('abhinaba', 'https://itransport.iiita.ac.in/', 'index.php', '172.31.1.32', '2018-01-15 11:44:08'),
('abhinaba', 'https://itransport.iiita.ac.in/?pg=requisition', 'index.php', '172.31.1.32', '2018-01-15 11:44:22'),
('abhinaba', 'https://itransport.iiita.ac.in/?pg=dutyroster', '', '172.31.1.32', '2018-01-15 11:44:37'),
('abhinaba', 'https://itransport.iiita.ac.in/index.php', 'index.php', '172.31.1.32', '2018-01-15 11:44:50'),
('abhinaba', 'https://itransport.iiita.ac.in/?pg=schedule', 'index.php', '172.31.1.32', '2018-01-15 11:45:40'),
('abhinaba', 'https://itransport.iiita.ac.in/?pg=route', 'index.php', '172.31.1.32', '2018-01-15 11:47:07'),
('abhinaba', 'https://itransport.iiita.ac.in/?pg=triphistory', 'index.php', '172.31.1.32', '2018-01-15 11:47:11'),
('abhinaba', 'https://itransport.iiita.ac.in/?pg=vehicle', 'index.php', '172.31.1.32', '2018-01-15 11:48:28'),
('abhinaba', 'https://itransport.iiita.ac.in/?pg=reportrefilling', 'index.php', '172.31.1.32', '2018-01-15 11:48:35'),
('abhinaba', 'https://itransport.iiita.ac.in/?pg=logrunning', '', '172.31.1.32', '2018-01-15 12:25:30'),
('abhishekkr', 'https://iport.iiita.ac.in/', '', '172.31.1.6', '2018-01-31 18:06:34'),
('abhishekkr', 'https://iport.iiita.ac.in/', 'index.php', '172.31.1.6', '2018-01-31 18:06:52'),
('abhishekkr', 'https://iport.iiita.ac.in/?pg=booking&rowID=5', 'index.php', '172.31.1.6', '2018-01-31 18:07:09'),
('abhishekkr', 'https://iport.iiita.ac.in/', 'index.php', '172.31.1.6', '2018-01-31 18:07:28'),
('abhishekkr', 'https://iport.iiita.ac.in/?pg=booking&rowID=5', '', '172.31.1.6', '2018-01-31 18:07:39'),
('durgesh', 'https://iport.iiita.ac.in/', '', '172.31.1.101', '2018-02-01 12:58:20'),
('durgesh', 'https://iport.iiita.ac.in/', '', '172.31.1.101', '2018-02-01 12:58:26'),
('durgesh', 'https://iport.iiita.ac.in/', '/', '172.31.1.101', '2018-02-01 12:58:34'),
('durgesh', 'https://iport.iiita.ac.in/', '', '172.31.1.101', '2018-02-01 12:59:03'),
('durgesh', 'https://iport.iiita.ac.in/', '/', '172.31.1.101', '2018-02-01 12:59:23'),
('durgesh', 'https://iport.iiita.ac.in/?pg=wregistration', '/', '172.31.1.101', '2018-02-01 13:00:02'),
('durgesh', 'https://iport.iiita.ac.in/?pg=schooltiming', '/', '172.31.1.101', '2018-02-01 13:00:17'),
('durgesh', 'https://iport.iiita.ac.in/?pg=holidaynotice', '/', '172.31.1.101', '2018-02-01 13:00:40'),
('durgesh', 'https://iport.iiita.ac.in/?pg=driverlist', '/', '172.31.1.101', '2018-02-01 13:00:52'),
('durgesh', 'https://iport.iiita.ac.in/?pg=holidaynotice', '/', '172.31.1.101', '2018-02-01 13:01:27'),
('durgesh', 'https://iport.iiita.ac.in/?pg=driverlist', '/', '172.31.1.101', '2018-02-01 13:01:35'),
('durgesh', 'https://iport.iiita.ac.in/?pg=triphistory', '/', '172.31.1.101', '2018-02-01 13:03:19'),
('durgesh', 'https://iport.iiita.ac.in/?pg=schedules', '/', '172.31.1.101', '2018-02-01 13:03:28'),
('durgesh', 'https://iport.iiita.ac.in/?pg=wregistration', '/', '172.31.1.101', '2018-02-01 13:03:43'),
('durgesh', 'https://iport.iiita.ac.in/?pg=schooltiming', '/', '172.31.1.101', '2018-02-01 13:04:03'),
('durgesh', 'https://iport.iiita.ac.in/?pg=holidaynotice', '/', '172.31.1.101', '2018-02-01 13:04:17'),
('itransport', 'https://itransport.iiita.ac.in/?pg=vehicles', '', '172.31.1.32', '2018-01-10 23:31:31'),
('itransport', 'https://itransport.iiita.ac.in/', 'index.php', '172.31.1.32', '2018-01-10 23:31:41'),
('itransport', 'https://itransport.iiita.ac.in/', '', '172.31.1.32', '2018-01-10 23:33:47'),
('mmishra', 'https://iport.iiita.ac.in/?pg=websessions&dated=2018-01-31', '/', '172.31.1.32', '2018-02-01 00:51:09'),
('mmishra', 'https://iport.iiita.ac.in/?pg=websessions&dated=2018-01-30', '/', '172.31.1.32', '2018-02-01 00:51:10'),
('mmishra', 'https://iport.iiita.ac.in/?pg=websessions&dated=2018-01-29', '/', '172.31.1.32', '2018-02-01 00:51:11'),
('mmishra', 'https://iport.iiita.ac.in/?pg=websessions&dated=2018-01-28', '/', '172.31.1.32', '2018-02-01 00:51:16'),
('mmishra', 'https://iport.iiita.ac.in/?pg=weblogs', '/', '172.31.1.32', '2018-02-01 00:51:42'),
('mmishra', 'https://iport.iiita.ac.in/?pg=sysconfig', '/', '172.31.1.32', '2018-02-01 00:51:45'),
('mmishra', 'https://iport.iiita.ac.in/', '', '172.31.1.32', '2018-02-01 00:52:11'),
('mmishra', 'https://iport.iiita.ac.in/', '/', '172.31.1.32', '2018-02-01 00:52:15'),
('mmishra', 'https://iport.iiita.ac.in/?pg=websessions', '/', '172.31.1.32', '2018-02-01 00:52:21'),
('mmishra', 'https://iport.iiita.ac.in/?pg=websessions&dated=2018-01-31', '/', '172.31.1.32', '2018-02-01 00:52:34'),
('mmishra', 'https://iport.iiita.ac.in/?pg=websessions&dated=2018-02-01', '/', '172.31.1.32', '2018-02-01 00:52:37'),
('mmishra', 'https://iport.iiita.ac.in/?pg=usersessions', '', '172.31.1.32', '2018-02-01 10:21:06'),
('mmishra', 'https://iport.iiita.ac.in/', '/', '172.31.1.32', '2018-02-01 10:21:12'),
('mmishra', 'https://iport.iiita.ac.in/?pg=websessions', '/', '172.31.1.32', '2018-02-01 10:30:10'),
('mmishra', 'https://iport.iiita.ac.in/?pg=driver', '/', '172.31.1.32', '2018-02-01 10:30:14'),
('mmishra', 'https://iport.iiita.ac.in/?pg=helper', '/', '172.31.1.32', '2018-02-01 10:30:16'),
('mmishra', 'https://iport.iiita.ac.in/?pg=helper&rowID=1', '', '172.31.1.32', '2018-02-01 10:30:30'),
('mmishra', 'https://iport.iiita.ac.in/index.php', '', '172.31.1.32', '2018-02-01 10:30:38'),
('mmishra', 'https://iport.iiita.ac.in/index.php', '', '172.31.1.32', '2018-02-01 10:30:46'),
('mmishra', 'https://iport.iiita.ac.in/index.php', '', '172.31.1.32', '2018-02-01 10:32:12'),
('mmishra', 'https://iport.iiita.ac.in/index.php', '', '172.31.1.32', '2018-02-01 10:35:13'),
('mmishra', 'https://iport.iiita.ac.in/index.php', '', '172.31.1.32', '2018-02-01 10:35:18'),
('mmishra', 'https://iport.iiita.ac.in/index.php', '/', '172.31.1.32', '2018-02-01 10:35:29'),
('mmishra', 'https://iport.iiita.ac.in/?pg=route', '/', '172.31.1.32', '2018-02-01 10:39:34'),
('mmishra', 'https://iport.iiita.ac.in/?pg=route&rowID=1', '', '172.31.1.32', '2018-02-01 10:39:37'),
('mmishra', 'https://iport.iiita.ac.in/index.php', '', '172.31.1.32', '2018-02-01 10:39:53'),
('mmishra', 'https://iport.iiita.ac.in/index.php', '/', '172.31.1.32', '2018-02-01 10:39:56'),
('mmishra', 'https://iport.iiita.ac.in/?pg=route&rowID=2', '', '172.31.1.32', '2018-02-01 10:39:58'),
('mmishra', 'https://iport.iiita.ac.in/index.php', '', '172.31.1.32', '2018-02-01 10:40:06'),
('mmishra', 'https://iport.iiita.ac.in/index.php', '/', '172.31.1.32', '2018-02-01 10:40:23'),
('mmishra', 'https://iport.iiita.ac.in/?pg=vehicle', '/', '172.31.1.32', '2018-02-01 10:40:39'),
('mmishra', 'https://iport.iiita.ac.in/?pg=driver', '', '172.31.1.32', '2018-02-01 10:42:07'),
('mmishra', 'https://iport.iiita.ac.in/index.php', '', '172.31.1.32', '2018-02-01 10:45:41'),
('mmishra', 'https://iport.iiita.ac.in/index.php', '', '172.31.1.32', '2018-02-01 10:46:38'),
('mmishra', 'https://iport.iiita.ac.in/index.php', '/', '172.31.1.32', '2018-02-01 10:46:59'),
('mmishra', 'https://iport.iiita.ac.in/?pg=driver&rowID=1', '/', '172.31.1.32', '2018-02-01 10:47:00'),
('mmishra', 'https://iport.iiita.ac.in/?pg=driver&rowID=5', '/', '172.31.1.32', '2018-02-01 10:47:02'),
('mmishra', 'https://iport.iiita.ac.in/?pg=driver&rowID=1', '/', '172.31.1.32', '2018-02-01 10:47:08'),
('mmishra', 'https://iport.iiita.ac.in/?pg=dutyroster', '/', '172.31.1.32', '2018-02-01 10:47:11'),
('mmishra', 'https://iport.iiita.ac.in/?pg=dutyroster&rowID=1', '', '172.31.1.32', '2018-02-01 10:47:15'),
('mmishra', 'https://iport.iiita.ac.in/index.php', '', '172.31.1.32', '2018-02-01 10:47:19'),
('mmishra', 'https://iport.iiita.ac.in/index.php', '/', '172.31.1.32', '2018-02-01 10:47:41'),
('mmishra', 'https://iport.iiita.ac.in/?pg=driver', '', '172.31.1.32', '2018-02-01 10:48:35'),
('mmishra', 'https://iport.iiita.ac.in/index.php', '/', '172.31.1.32', '2018-02-01 10:48:39'),
('mmishra', 'https://iport.iiita.ac.in/?pg=dutyroster', '/', '172.31.1.32', '2018-02-01 10:48:42'),
('mmishra', 'https://iport.iiita.ac.in/?pg=dutyroster&rowID=10', '', '172.31.1.32', '2018-02-01 10:48:46'),
('mmishra', 'https://iport.iiita.ac.in/index.php', '', '172.31.1.32', '2018-02-01 10:48:49'),
('mmishra', 'https://iport.iiita.ac.in/index.php', '/', '172.31.1.32', '2018-02-01 10:48:54'),
('mmishra', 'https://iport.iiita.ac.in/?pg=driver', '/', '172.31.1.32', '2018-02-01 10:48:56'),
('mmishra', 'https://iport.iiita.ac.in/?pg=driver&rowID=6', '', '172.31.1.32', '2018-02-01 10:49:02'),
('mmishra', 'https://iport.iiita.ac.in/index.php', '', '172.31.1.32', '2018-02-01 10:49:08'),
('mmishra', 'https://iport.iiita.ac.in/index.php', '/', '172.31.1.32', '2018-02-01 10:49:11'),
('mmishra', 'https://iport.iiita.ac.in/?pg=dutyroster', '/', '172.31.1.32', '2018-02-01 10:49:25'),
('mmishra', 'https://iport.iiita.ac.in/?pg=dutyroster', '/', '172.31.1.32', '2018-02-01 10:52:26'),
('mmishra', 'https://iport.iiita.ac.in/?pg=schedule', '/', '172.31.1.32', '2018-02-01 10:52:52'),
('mmishra', 'https://iport.iiita.ac.in/?pg=schedule&rowID=1', '/', '172.31.1.32', '2018-02-01 10:53:58'),
('mmishra', 'https://iport.iiita.ac.in/?pg=schedule&rowID=2', '/', '172.31.1.32', '2018-02-01 10:54:52'),
('mmishra', 'https://iport.iiita.ac.in/?pg=schedule&rowID=1', '/', '172.31.1.32', '2018-02-01 10:55:16'),
('mmishra', 'https://iport.iiita.ac.in/?pg=school', '', '172.31.1.32', '2018-02-01 10:56:49'),
('mmishra', 'https://iport.iiita.ac.in/index.php', '/', '172.31.1.32', '2018-02-01 10:57:03'),
('mmishra', 'https://iport.iiita.ac.in/?pg=school&rowID=2', '/', '172.31.1.32', '2018-02-01 10:57:05'),
('mmishra', 'https://iport.iiita.ac.in/?pg=school&rowID=3', '', '172.31.1.32', '2018-02-01 10:57:08'),
('mmishra', 'https://iport.iiita.ac.in/index.php', '', '172.31.1.32', '2018-02-01 10:58:53'),
('mmishra', 'https://iport.iiita.ac.in/index.php', '', '172.31.1.32', '2018-02-01 10:59:04'),
('mmishra', 'https://iport.iiita.ac.in/', '/', '172.31.1.32', '2018-02-01 10:59:20'),
('mmishra', 'https://iport.iiita.ac.in/?pg=wregistration', '/', '172.31.1.32', '2018-02-01 11:02:20'),
('mmishra', 'https://iport.iiita.ac.in/?pg=school', '', '172.31.1.32', '2018-02-01 11:03:05'),
('mmishra', 'https://iport.iiita.ac.in/index.php', '/', '172.31.1.32', '2018-02-01 11:03:49'),
('mmishra', 'https://iport.iiita.ac.in/?pg=school&rowID=3', '', '172.31.1.32', '2018-02-01 11:03:50'),
('mmishra', 'https://iport.iiita.ac.in/index.php', '', '172.31.1.32', '2018-02-01 11:04:30'),
('mmishra', 'https://iport.iiita.ac.in/index.php', '/', '172.31.1.32', '2018-02-01 11:04:40'),
('mmishra', 'https://iport.iiita.ac.in/?pg=wregistration', '/', '172.31.1.32', '2018-02-01 11:04:48'),
('mmishra', 'https://iport.iiita.ac.in/?pg=wregistration&rowID=2', '/', '172.31.1.32', '2018-02-01 11:04:50'),
('mmishra', 'https://iport.iiita.ac.in/?pg=wregistration&rowID=1', '/', '172.31.1.32', '2018-02-01 11:04:51'),
('mmishra', 'https://iport.iiita.ac.in/?pg=wregistration&rowID=2', '/', '172.31.1.32', '2018-02-01 11:05:03'),
('mmishra', 'https://iport.iiita.ac.in/?pg=dutyroster', '/', '172.31.1.32', '2018-02-01 11:05:53'),
('mmishra', 'https://iport.iiita.ac.in/?pg=schedule', '/', '172.31.1.32', '2018-02-01 11:05:59'),
('mmishra', 'https://iport.iiita.ac.in/?pg=logrunning', '/', '172.31.1.32', '2018-02-01 11:06:02'),
('mmishra', 'https://iport.iiita.ac.in/?pg=tripbilling', '/', '172.31.1.32', '2018-02-01 11:06:05'),
('mmishra', 'https://iport.iiita.ac.in/?pg=booking', '/', '172.31.1.32', '2018-02-01 11:06:07'),
('mmishra', 'https://iport.iiita.ac.in/?pg=schedule', '/', '172.31.1.32', '2018-02-01 11:06:32'),
('mmishra', 'https://iport.iiita.ac.in/?pg=schedule', '/', '172.31.1.32', '2018-02-01 11:06:51'),
('mmishra', 'https://iport.iiita.ac.in/?pg=schedule', '/', '172.31.1.32', '2018-02-01 11:07:25'),
('mmishra', 'https://iport.iiita.ac.in/?pg=dutyroster', '/', '172.31.1.32', '2018-02-01 11:07:34'),
('mmishra', 'https://iport.iiita.ac.in/?pg=dutyroster&rowID=1', '/', '172.31.1.32', '2018-02-01 11:07:36'),
('mmishra', 'https://iport.iiita.ac.in/?pg=dutyroster&rowID=10', '/', '172.31.1.32', '2018-02-01 11:07:38'),
('mmishra', 'https://iport.iiita.ac.in/?pg=dutyroster&rowID=11', '/', '172.31.1.32', '2018-02-01 11:07:39'),
('mmishra', 'https://iport.iiita.ac.in/?pg=dutyroster&rowID=10', '/', '172.31.1.32', '2018-02-01 11:07:40'),
('mmishra', 'https://iport.iiita.ac.in/?pg=dutyroster&rowID=1', '/', '172.31.1.32', '2018-02-01 11:07:46'),
('mmishra', 'https://iport.iiita.ac.in/?pg=schedule', '/', '172.31.1.32', '2018-02-01 11:07:49'),
('mmishra', 'https://iport.iiita.ac.in/?pg=schedule&rowID=2', '/', '172.31.1.32', '2018-02-01 11:07:50'),
('mmishra', 'https://iport.iiita.ac.in/?pg=schedule&rowID=1', '/', '172.31.1.32', '2018-02-01 11:07:51'),
('mmishra', 'https://iport.iiita.ac.in/?pg=schedule&rowID=1', '/', '172.31.1.32', '2018-02-01 11:10:37'),
('mmishra', 'https://iport.iiita.ac.in/?pg=schedule&rowID=3', '', '172.31.1.32', '2018-02-01 15:17:54'),
('mmishra', 'https://iport.iiita.ac.in/?pg=schedule&rowID=3', '', '172.31.1.32', '2018-02-01 15:18:28'),
('mmishra', 'https://iport.iiita.ac.in/', '/', '172.31.1.32', '2018-02-01 15:18:34'),
('mmishra', 'https://iport.iiita.ac.in/', '/', '172.31.1.32', '2018-02-01 15:21:16'),
('mmishra', 'https://iport.iiita.ac.in/?pg=wregistration', '/', '172.31.1.32', '2018-02-01 15:21:23'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition', '/', '172.31.1.32', '2018-02-01 15:21:58'),
('mmishra', 'https://iport.iiita.ac.in/?pg=wregistration', '/', '172.31.1.32', '2018-02-01 15:22:01'),
('mmishra', 'https://iport.iiita.ac.in/?pg=wregistration&rowID=2', '/', '172.31.1.32', '2018-02-01 15:22:05'),
('mmishra', 'https://iport.iiita.ac.in/?pg=wregistration&rowID=2', '/', '172.31.1.32', '2018-02-01 15:22:59'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition', '/', '172.31.1.32', '2018-02-01 15:23:01'),
('mmishra', 'https://iport.iiita.ac.in/?pg=cancellation', '/', '172.31.1.32', '2018-02-01 15:23:05'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition', '/', '172.31.1.32', '2018-02-01 15:23:07'),
('mmishra', 'https://iport.iiita.ac.in/?pg=schooltiming', '/', '172.31.1.32', '2018-02-01 15:23:12'),
('mmishra', 'https://iport.iiita.ac.in/?pg=wregistration', '/', '172.31.1.32', '2018-02-01 15:23:13'),
('mmishra', 'https://iport.iiita.ac.in/?pg=schooltiming', '/', '172.31.1.32', '2018-02-01 15:23:55'),
('mmishra', 'https://iport.iiita.ac.in/?pg=wregistration', '/', '172.31.1.32', '2018-02-01 15:23:57'),
('mmishra', 'https://iport.iiita.ac.in/?pg=schooltiming', '/', '172.31.1.32', '2018-02-01 15:23:58'),
('mmishra', 'https://iport.iiita.ac.in/?pg=holidaynotice', '/', '172.31.1.32', '2018-02-01 15:24:00'),
('mmishra', 'https://iport.iiita.ac.in/?pg=feedback', '/', '172.31.1.32', '2018-02-01 15:24:02'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition', '/', '172.31.1.32', '2018-02-01 15:24:25'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition&rowID=5', '/', '172.31.1.32', '2018-02-01 15:24:26'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition&rowID=1', '/', '172.31.1.32', '2018-02-01 15:24:27'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition&rowID=3', '/', '172.31.1.32', '2018-02-01 15:24:28'),
('mmishra', 'https://iport.iiita.ac.in/', '', '172.31.1.32', '2018-02-01 16:35:33'),
('mmishra', 'https://iport.iiita.ac.in/', '/', '172.31.1.32', '2018-02-01 16:36:30'),
('mmishra', 'https://iport.iiita.ac.in/?pg=sysconfig', '/', '172.31.1.32', '2018-02-01 16:37:05'),
('mmishra', 'https://iport.iiita.ac.in/?pg=vehicle', '/', '172.31.1.32', '2018-02-01 16:37:07'),
('mmishra', 'https://iport.iiita.ac.in/?pg=vehicle&rowID=1', '/', '172.31.1.32', '2018-02-01 16:37:14'),
('mmishra', 'https://iport.iiita.ac.in/?pg=vehicle&rowID=2', '/', '172.31.1.32', '2018-02-01 16:37:15'),
('mmishra', 'https://iport.iiita.ac.in/?pg=vehicle&rowID=3', '/', '172.31.1.32', '2018-02-01 16:37:17'),
('mmishra', 'https://iport.iiita.ac.in/?pg=driver', '/', '172.31.1.32', '2018-02-01 16:37:18'),
('mmishra', 'https://iport.iiita.ac.in/?pg=driver&rowID=1', '/', '172.31.1.32', '2018-02-01 16:37:23'),
('mmishra', 'https://iport.iiita.ac.in/?pg=helper', '/', '172.31.1.32', '2018-02-01 16:37:26'),
('mmishra', 'https://iport.iiita.ac.in/?pg=helper&rowID=1', '/', '172.31.1.32', '2018-02-01 16:37:28'),
('mmishra', 'https://iport.iiita.ac.in/?pg=route', '/', '172.31.1.32', '2018-02-01 16:37:31'),
('mmishra', 'https://iport.iiita.ac.in/?pg=route&rowID=1', '/', '172.31.1.32', '2018-02-01 16:38:00'),
('mmishra', 'https://iport.iiita.ac.in/?pg=school', '/', '172.31.1.32', '2018-02-01 16:38:01'),
('mmishra', 'https://iport.iiita.ac.in/?pg=school&rowID=3', '/', '172.31.1.32', '2018-02-01 16:38:02'),
('mmishra', 'https://iport.iiita.ac.in/?pg=school&rowID=6', '/', '172.31.1.32', '2018-02-01 16:38:03'),
('mmishra', 'https://iport.iiita.ac.in/?pg=school&rowID=4', '/', '172.31.1.32', '2018-02-01 16:38:05'),
('mmishra', 'https://iport.iiita.ac.in/?pg=school&rowID=2', '', '172.31.1.32', '2018-02-01 16:38:12'),
('mmishra', 'https://iport.iiita.ac.in/index.php', '/', '172.31.1.32', '2018-02-01 16:38:14'),
('mmishra', 'https://iport.iiita.ac.in/?pg=school&rowID=3', '', '172.31.1.32', '2018-02-01 16:38:21'),
('mmishra', 'https://iport.iiita.ac.in/index.php', '', '172.31.1.32', '2018-02-01 16:38:27'),
('mmishra', 'https://iport.iiita.ac.in/index.php', '/', '172.31.1.32', '2018-02-01 16:38:37'),
('mmishra', 'https://iport.iiita.ac.in/?pg=school&rowID=3', '/', '172.31.1.32', '2018-02-01 16:38:45'),
('mmishra', 'https://iport.iiita.ac.in/?pg=driver', '/', '172.31.1.32', '2018-02-01 16:38:49'),
('mmishra', 'https://iport.iiita.ac.in/?pg=school', '/', '172.31.1.32', '2018-02-01 16:38:54'),
('mmishra', 'https://iport.iiita.ac.in/?pg=dutyroster', '/', '172.31.1.32', '2018-02-01 16:39:03'),
('mmishra', 'https://iport.iiita.ac.in/?pg=schedule', '/', '172.31.1.32', '2018-02-01 16:39:51'),
('mmishra', 'https://iport.iiita.ac.in/?pg=booking', '/', '172.31.1.32', '2018-02-01 16:39:56'),
('mmishra', 'https://iport.iiita.ac.in/?pg=tripbilling', '/', '172.31.1.32', '2018-02-01 16:40:00'),
('mmishra', 'https://iport.iiita.ac.in/?pg=&rowID=1', '/', '172.31.1.32', '2018-02-01 16:40:03'),
('mmishra', 'https://iport.iiita.ac.in/?pg=logrunning', '/', '172.31.1.32', '2018-02-01 16:40:30'),
('mmishra', 'https://iport.iiita.ac.in/?pg=logrefilling', '/', '172.31.1.32', '2018-02-01 16:40:39'),
('mmishra', 'https://iport.iiita.ac.in/?pg=logrepairing', '/', '172.31.1.32', '2018-02-01 16:41:14'),
('mmishra', 'https://iport.iiita.ac.in/?pg=webusers', '/', '172.31.1.32', '2018-02-01 16:41:33'),
('mmishra', 'https://iport.iiita.ac.in/?pg=websessions', '/', '172.31.1.32', '2018-02-01 16:41:35'),
('mmishra', 'https://iport.iiita.ac.in/?pg=weblogs', '/', '172.31.1.32', '2018-02-01 16:41:38'),
('mmishra', 'https://iport.iiita.ac.in/?pg=vehicle&rowID=2', '', '172.31.1.32', '2018-02-01 17:35:09'),
('mmishra', 'https://iport.iiita.ac.in/', '/', '172.31.1.32', '2018-02-01 17:35:16'),
('mmishra', 'https://iport.iiita.ac.in/?pg=logbook&flag=2', '/', '172.31.1.32', '2018-02-01 17:36:01'),
('mmishra', 'https://iport.iiita.ac.in/?pg=logbook&flag=1', '/', '172.31.1.32', '2018-02-01 17:36:38'),
('mmishra', 'https://iport.iiita.ac.in/?pg=vehicle', '/', '172.31.1.32', '2018-02-01 17:40:55'),
('mmishra', 'https://iport.iiita.ac.in/?pg=school', '/', '172.31.1.32', '2018-02-01 17:44:50'),
('mmishra', 'https://iport.iiita.ac.in/?pg=school&rowID=6', '/', '172.31.1.32', '2018-02-01 17:44:51'),
('mmishra', 'https://iport.iiita.ac.in/?pg=school&rowID=2', '/', '172.31.1.32', '2018-02-01 17:44:52'),
('mmishra', 'https://iport.iiita.ac.in/?pg=school&rowID=1', '/', '172.31.1.32', '2018-02-01 17:44:53'),
('mmishra', 'https://iport.iiita.ac.in/?pg=school&rowID=3', '/', '172.31.1.32', '2018-02-01 17:52:56'),
('mmishra', 'https://iport.iiita.ac.in/?pg=vehicle', '/', '172.31.1.32', '2018-02-01 17:52:58'),
('mmishra', 'https://iport.iiita.ac.in/?pg=vehicle&rowID=1', '/', '172.31.1.32', '2018-02-01 17:55:19'),
('mmishra', 'https://iport.iiita.ac.in/?pg=driver', '/', '172.31.1.32', '2018-02-01 17:55:20'),
('mmishra', 'https://iport.iiita.ac.in/?pg=helper', '/', '172.31.1.32', '2018-02-01 17:55:21'),
('mmishra', 'https://iport.iiita.ac.in/?pg=route', '/', '172.31.1.32', '2018-02-01 17:55:22'),
('mmishra', 'https://iport.iiita.ac.in/?pg=school', '/', '172.31.1.32', '2018-02-01 17:55:55'),
('mmishra', 'https://iport.iiita.ac.in/?pg=driver', '/', '172.31.1.32', '2018-02-02 11:14:05'),
('mmishra', 'https://iport.iiita.ac.in/?pg=sysconfig', '', '172.31.1.32', '2018-02-02 11:14:33'),
('mmishra', 'https://iport.iiita.ac.in/index.php', '', '172.31.1.32', '2018-02-02 11:14:54'),
('mmishra', 'https://iport.iiita.ac.in/index.php', '', '172.31.1.32', '2018-02-02 11:20:09'),
('mmishra', 'https://iport.iiita.ac.in/index.php', '', '172.31.1.32', '2018-02-02 11:21:59'),
('mmishra', 'https://iport.iiita.ac.in/index.php', '', '172.31.1.32', '2018-02-02 11:27:16'),
('mmishra', 'https://iport.iiita.ac.in/index.php', '', '172.31.1.32', '2018-02-02 11:30:39'),
('mmishra', 'https://iport.iiita.ac.in/index.php', '', '172.31.1.32', '2018-02-02 11:30:40'),
('mmishra', 'https://iport.iiita.ac.in/index.php', '', '172.31.1.32', '2018-02-02 11:31:00'),
('mmishra', 'https://iport.iiita.ac.in/index.php', '', '172.31.1.32', '2018-02-02 11:31:01'),
('mmishra', 'https://iport.iiita.ac.in/index.php', '', '172.31.1.32', '2018-02-02 11:31:16'),
('mmishra', 'https://iport.iiita.ac.in/index.php', '', '172.31.1.32', '2018-02-02 11:31:17'),
('mmishra', 'https://iport.iiita.ac.in/', '', '172.31.1.32', '2018-02-02 11:31:19'),
('mmishra', 'https://iport.iiita.ac.in/', '', '172.31.1.32', '2018-02-02 11:31:20'),
('mmishra', 'https://iport.iiita.ac.in/', '', '172.31.1.32', '2018-02-02 11:31:31'),
('mmishra', 'https://iport.iiita.ac.in/', '', '172.31.1.32', '2018-02-02 11:31:33'),
('mmishra', 'https://iport.iiita.ac.in/', '', '172.31.1.32', '2018-02-02 11:31:45'),
('mmishra', 'https://iport.iiita.ac.in/', '', '172.31.1.32', '2018-02-02 11:32:50'),
('mmishra', 'https://iport.iiita.ac.in/', '', '172.31.1.32', '2018-02-02 11:34:36'),
('mmishra', 'https://iport.iiita.ac.in/', '', '172.31.1.32', '2018-02-02 11:35:08'),
('mmishra', 'https://iport.iiita.ac.in/', '', '172.31.1.32', '2018-02-02 11:37:12'),
('mmishra', 'https://iport.iiita.ac.in/', '', '172.31.1.32', '2018-02-02 11:37:46'),
('mmishra', 'https://iport.iiita.ac.in/', '', '172.31.1.32', '2018-02-02 11:38:39'),
('mmishra', 'https://iport.iiita.ac.in/', '', '172.31.1.32', '2018-02-02 11:39:10'),
('mmishra', 'https://iport.iiita.ac.in/', '', '172.31.1.32', '2018-02-02 11:41:14'),
('mmishra', 'https://iport.iiita.ac.in/', '', '172.31.1.32', '2018-02-02 11:41:56'),
('mmishra', 'https://iport.iiita.ac.in/', '', '172.31.1.32', '2018-02-02 11:44:41'),
('mmishra', 'https://iport.iiita.ac.in/', '', '172.31.1.32', '2018-02-02 11:45:01'),
('mmishra', 'https://iport.iiita.ac.in/', '', '172.31.1.32', '2018-02-02 11:47:01'),
('mmishra', 'https://iport.iiita.ac.in/', '', '172.31.1.32', '2018-02-02 11:47:46'),
('mmishra', 'https://iport.iiita.ac.in/', '', '172.31.1.32', '2018-02-02 11:49:12'),
('mmishra', 'https://iport.iiita.ac.in/', '', '172.31.1.32', '2018-02-02 11:49:24'),
('mmishra', 'https://iport.iiita.ac.in/', '', '172.31.1.32', '2018-02-02 11:50:15'),
('mmishra', 'https://iport.iiita.ac.in/', '', '172.31.1.32', '2018-02-02 11:50:35'),
('mmishra', 'https://iport.iiita.ac.in/', '', '172.31.1.32', '2018-02-02 11:51:03'),
('mmishra', 'https://iport.iiita.ac.in/', '', '172.31.1.32', '2018-02-02 11:51:35'),
('mmishra', 'https://iport.iiita.ac.in/', '', '172.31.1.32', '2018-02-02 11:51:36'),
('mmishra', 'https://iport.iiita.ac.in/', '', '172.31.1.32', '2018-02-02 11:51:47'),
('mmishra', 'https://iport.iiita.ac.in/', '', '172.31.1.32', '2018-02-02 11:51:56'),
('mmishra', 'https://iport.iiita.ac.in/', '', '172.31.1.32', '2018-02-02 11:51:58'),
('mmishra', 'https://iport.iiita.ac.in/', '', '172.31.1.32', '2018-02-02 11:52:46'),
('mmishra', 'https://iport.iiita.ac.in/', '/', '172.31.1.32', '2018-02-02 11:57:25'),
('mmishra', 'https://iport.iiita.ac.in/?pg=schedule', '', '172.31.1.32', '2018-02-02 11:57:31'),
('mmishra', 'https://iport.iiita.ac.in/?pg=&rowID=3', '', '172.31.1.32', '2018-02-02 15:29:14'),
('mmishra', 'https://iport.iiita.ac.in/?pg=&rowID=3', '', '172.31.1.32', '2018-02-02 15:30:49'),
('mmishra', 'https://iport.iiita.ac.in/?pg=&rowID=3', '', '172.31.1.32', '2018-02-02 15:31:07'),
('mmishra', 'https://iport.iiita.ac.in/', '/', '172.31.1.32', '2018-02-02 15:31:19'),
('mmishra', 'https://iport.iiita.ac.in/?pg=dutyroster', '/', '172.31.1.32', '2018-02-02 15:31:22'),
('mmishra', 'https://iport.iiita.ac.in/?pg=schedule', '/', '172.31.1.32', '2018-02-02 15:31:24'),
('mmishra', 'https://iport.iiita.ac.in/?pg=booking', '/', '172.31.1.32', '2018-02-02 15:31:30'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition', '/', '172.31.1.32', '2018-02-02 15:31:32'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition&rowID=5', '/', '172.31.1.32', '2018-02-02 15:32:13'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition&rowID=5', '/', '172.31.1.32', '2018-02-02 15:33:31'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition&rowID=5', '/', '172.31.1.32', '2018-02-02 15:34:10'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition&rowID=5', '/', '172.31.1.32', '2018-02-02 15:34:20'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition&rowID=5', '/', '172.31.1.32', '2018-02-02 15:35:20'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition&rowID=5', '/', '172.31.1.32', '2018-02-02 15:35:21'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition&rowID=5', '/', '172.31.1.32', '2018-02-02 15:35:52'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition', '/', '172.31.1.32', '2018-02-02 15:35:54'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition', '/', '172.31.1.32', '2018-02-02 15:36:24'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition', '/', '172.31.1.32', '2018-02-02 15:36:25'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition', '/', '172.31.1.32', '2018-02-02 15:36:40'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition', '/', '172.31.1.32', '2018-02-02 15:36:41'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition', '/', '172.31.1.32', '2018-02-02 15:37:08'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition', '/', '172.31.1.32', '2018-02-02 15:37:09'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition', '/', '172.31.1.32', '2018-02-02 15:37:10'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition', '/', '172.31.1.32', '2018-02-02 15:37:31'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition', '/', '172.31.1.32', '2018-02-02 15:37:32'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition&rowID=5', '/', '172.31.1.32', '2018-02-02 15:37:33'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition&rowID=1', '/', '172.31.1.32', '2018-02-02 15:37:34'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition&rowID=1', '/', '172.31.1.32', '2018-02-02 15:39:19'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition&rowID=5', '/', '172.31.1.32', '2018-02-02 15:39:20'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition&rowID=1', '/', '172.31.1.32', '2018-02-02 15:39:21'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition&rowID=5', '/', '172.31.1.32', '2018-02-02 15:39:22'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition&rowID=1', '/', '172.31.1.32', '2018-02-02 15:39:24'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition&rowID=1', '/', '172.31.1.32', '2018-02-02 15:41:14'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition&rowID=5', '/', '172.31.1.32', '2018-02-02 15:42:07'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition&rowID=1', '/', '172.31.1.32', '2018-02-02 15:42:08'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition&rowID=5', '/', '172.31.1.32', '2018-02-02 15:42:09'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition&rowID=1', '/', '172.31.1.32', '2018-02-02 15:42:14'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition&rowID=5', '/', '172.31.1.32', '2018-02-02 15:42:15'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition&rowID=5', '/', '172.31.1.32', '2018-02-02 15:42:17'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition&rowID=1', '/', '172.31.1.32', '2018-02-02 15:42:18'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition&rowID=5', '/', '172.31.1.32', '2018-02-02 15:42:21'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition&rowID=1', '/', '172.31.1.32', '2018-02-02 15:43:21'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition&rowID=5', '/', '172.31.1.32', '2018-02-02 15:43:22'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition&rowID=1', '/', '172.31.1.32', '2018-02-02 15:43:23'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition&rowID=5', '/', '172.31.1.32', '2018-02-02 15:43:46'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition&rowID=1', '/', '172.31.1.32', '2018-02-02 15:43:49'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition&rowID=5', '/', '172.31.1.32', '2018-02-02 15:43:57'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition&rowID=5', '/', '172.31.1.32', '2018-02-02 15:43:58'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition&rowID=1', '/', '172.31.1.32', '2018-02-02 15:43:59'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition&rowID=1', '/', '172.31.1.32', '2018-02-02 15:54:38'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition&rowID=5', '/', '172.31.1.32', '2018-02-02 15:55:42'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition&rowID=1', '/', '172.31.1.32', '2018-02-02 15:55:44'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition&rowID=1', '/', '172.31.1.32', '2018-02-02 15:56:00'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition&rowID=1', '/', '172.31.1.32', '2018-02-02 15:56:16'),
('mmishra', 'https://iport.iiita.ac.in/?pg=schools', '/', '172.31.1.32', '2018-02-02 15:56:50'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition', '/', '172.31.1.32', '2018-02-02 15:56:52'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition&rowID=1', '/', '172.31.1.32', '2018-02-02 15:56:54'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition&rowID=5', '/', '172.31.1.32', '2018-02-02 15:56:55'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition&rowID=1', '/', '172.31.1.32', '2018-02-02 15:56:57'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition&rowID=5', '/', '172.31.1.32', '2018-02-02 16:05:24'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition&rowID=5', '/', '172.31.1.32', '2018-02-02 16:06:39'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition&rowID=5', '/', '172.31.1.32', '2018-02-02 16:06:40'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition&rowID=5', '/', '172.31.1.32', '2018-02-02 16:07:16'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition&rowID=1', '/', '172.31.1.32', '2018-02-02 16:07:19'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition&rowID=5', '/', '172.31.1.32', '2018-02-02 16:09:01'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition&rowID=1', '/', '172.31.1.32', '2018-02-02 16:09:02'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition&rowID=5', '/', '172.31.1.32', '2018-02-02 16:09:31'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition&rowID=1', '/', '172.31.1.32', '2018-02-02 16:09:32'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition&rowID=5', '/', '172.31.1.32', '2018-02-02 16:11:39'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition&rowID=1', '/', '172.31.1.32', '2018-02-02 16:11:42'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition&rowID=5', '/', '172.31.1.32', '2018-02-02 16:11:45'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition&rowID=1', '/', '172.31.1.32', '2018-02-02 16:11:46'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition&rowID=5', '/', '172.31.1.32', '2018-02-02 16:11:47'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition&rowID=5', '/', '172.31.1.32', '2018-02-02 16:12:00'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition&rowID=1', '/', '172.31.1.32', '2018-02-02 16:12:01'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition&rowID=5', '/', '172.31.1.32', '2018-02-02 16:12:02'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition&rowID=1', '/', '172.31.1.32', '2018-02-02 16:12:03'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition&rowID=5', '/', '172.31.1.32', '2018-02-02 16:14:36'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition&rowID=1', '/', '172.31.1.32', '2018-02-02 16:14:37'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition&rowID=5', '/', '172.31.1.32', '2018-02-02 16:18:55'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition&rowID=1', '/', '172.31.1.32', '2018-02-02 16:18:56'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition&rowID=5', '/', '172.31.1.32', '2018-02-02 16:19:32'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition&rowID=1', '/', '172.31.1.32', '2018-02-02 16:19:33'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition&rowID=5', '/', '172.31.1.32', '2018-02-02 16:19:58'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition&rowID=1', '/', '172.31.1.32', '2018-02-02 16:19:59'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition&rowID=5', '/', '172.31.1.32', '2018-02-02 16:20:00'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition&rowID=5', '/', '172.31.1.32', '2018-02-02 16:23:53'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition&rowID=1', '/', '172.31.1.32', '2018-02-02 16:23:54'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition&rowID=5', '/', '172.31.1.32', '2018-02-02 16:23:55'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition&rowID=1', '/', '172.31.1.32', '2018-02-02 16:23:56'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition&rowID=5', '/', '172.31.1.32', '2018-02-02 16:24:52'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition&rowID=1', '/', '172.31.1.32', '2018-02-02 16:24:53'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition&rowID=5', '/', '172.31.1.32', '2018-02-02 16:24:55'),
('mmishra', 'https://iport.iiita.ac.in/?pg=requisition&rowID=1', '/', '172.31.1.32', '2018-02-02 16:24:56'),
('sk.singh', 'https://iport.iiita.ac.in/', '', '172.31.1.6', '2018-02-01 14:15:16'),
('sk.singh', 'https://iport.iiita.ac.in/', '/', '172.31.1.6', '2018-02-01 14:15:30'),
('sk.singh', 'https://iport.iiita.ac.in/?pg=billreceipt', '/', '172.31.1.6', '2018-02-01 14:15:33'),
('sk.singh', 'https://iport.iiita.ac.in/', '/', '172.31.1.6', '2018-02-01 14:15:39'),
('sk.singh@i', 'https://iport.iiita.ac.in/', '', '172.31.1.6', '2018-01-31 18:12:48'),
('sk.singh@i', 'https://iport.iiita.ac.in/', 'index.php', '172.31.1.6', '2018-01-31 18:13:27'),
('sk.singh@i', 'https://iport.iiita.ac.in/', '', '172.31.1.6', '2018-01-31 18:13:53'),
('sk.singh@i', 'https://iport.iiita.ac.in/', 'index.php', '172.31.1.6', '2018-01-31 18:13:58'),
('sk.singh@i', 'https://iport.iiita.ac.in/?pg=driverlist', 'index.php', '172.31.1.6', '2018-01-31 18:14:08'),
('sk.singh@i', 'https://iport.iiita.ac.in/?pg=triphistory', 'index.php', '172.31.1.6', '2018-01-31 18:14:21'),
('sk.singh@i', 'https://iport.iiita.ac.in/?pg=wregistration', 'index.php', '172.31.1.6', '2018-01-31 18:14:44'),
('sk.singh@i', 'https://iport.iiita.ac.in/?pg=holidaynotice', 'index.php', '172.31.1.6', '2018-01-31 18:14:51'),
('sk.singh@i', 'https://iport.iiita.ac.in/?pg=feedback', 'index.php', '172.31.1.6', '2018-01-31 18:14:57'),
('sk.singh@i', 'https://iport.iiita.ac.in/?pg=cancellation', 'index.php', '172.31.1.6', '2018-01-31 18:15:06');

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

--
-- Table structure for table `websessions`
--

CREATE TABLE `websessions` (
  `sessionID` varchar(50) NOT NULL,
  `userID` varchar(10) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL,
  `remoteIP` varchar(15) CHARACTER SET utf8 COLLATE utf8_unicode_ci DEFAULT NULL,
  `timeLogin` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
  `timeLogout` timestamp NULL DEFAULT NULL,
  `duration` time NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `websessions`
--

INSERT INTO `websessions` (`sessionID`, `userID`, `remoteIP`, `timeLogin`, `timeLogout`, `duration`) VALUES
('aXRyYW5zcG9ydC1pcnAyMDE1', 'itransport', '172.31.1.32', '2018-01-10 18:01:30', '2018-01-10 18:08:22', '00:06:52'),
('aXRyYW5zcG9ydC1pcnAyMDE1', 'itransport', '172.31.1.32', '2018-01-10 18:03:47', '2018-01-10 18:08:22', '00:04:35'),
('bW1pc2hyYS1oYXBweTIwMTY=', 'mmishra', '172.31.1.32', '2017-07-29 19:50:34', '2017-07-29 19:50:48', '00:00:14'),
('bW1pc2hyYS1oYXBweUAyMDE2', 'mmishra', '172.31.1.32', '2017-07-29 19:50:59', '2018-02-02 06:28:24', '838:59:59'),
('bW1pc2hyYS1oYXBweUAyMDE2', 'mmishra', '172.31.1.32', '2017-08-06 15:36:20', '2018-02-02 06:28:24', '838:59:59'),
('bW1pc2hyYS1oYXBweUAyMDE2', 'mmishra', '172.31.1.32', '2017-08-07 05:44:40', '2018-02-02 06:28:24', '838:59:59'),
('bW1pc2hyYS1oYXBweUAyMDE2', 'mmishra', '172.31.1.32', '2017-08-08 05:19:12', '2018-02-02 06:28:24', '838:59:59'),
('bW1pc2hyYS1oYXBweUAyMDE2', 'mmishra', '172.31.1.32', '2017-08-08 06:39:27', '2018-02-02 06:28:24', '838:59:59'),
('bW1pc2hyYS1oYXBweUAyMDE2', 'mmishra', '172.31.1.32', '2017-08-08 07:19:52', '2018-02-02 06:28:24', '838:59:59'),
('bW1pc2hyYS1oYXBweUAyMDE2', 'mmishra', '172.31.1.32', '2017-08-10 11:40:25', '2018-02-02 06:28:24', '838:59:59'),
('bW1pc2hyYS1oYXBweUAyMDE2', 'mmishra', '172.31.1.32', '2017-08-11 10:36:18', '2018-02-02 06:28:24', '838:59:59'),
('bW1pc2hyYS1oYXBweUAyMDE2', 'mmishra', '172.31.1.32', '2017-08-11 11:53:45', '2018-02-02 06:28:24', '838:59:59'),
('bW1pc2hyYS1oYXBweUAyMDE2', 'mmishra', '172.31.1.32', '2017-08-17 06:01:20', '2018-02-02 06:28:24', '838:59:59'),
('bW1pc2hyYS1oYXBweUAyMDE2', 'mmishra', '172.31.1.32', '2017-08-17 06:27:47', '2018-02-02 06:28:24', '838:59:59'),
('bW1pc2hyYS1oYXBweUAyMDE2', 'mmishra', '172.31.1.32', '2017-08-18 05:16:51', '2018-02-02 06:28:24', '838:59:59'),
('bW1pc2hyYS1oYXBweUAyMDE2', 'mmishra', '172.31.1.32', '2017-08-21 09:44:42', '2018-02-02 06:28:24', '838:59:59'),
('bW1pc2hyYS1oYXBweUAyMDE2', 'mmishra', '172.31.1.32', '2017-09-06 05:49:49', '2018-02-02 06:28:24', '838:59:59'),
('bW1pc2hyYS1oYXBweUAyMDE2', 'mmishra', '172.31.1.31', '2017-11-28 10:13:01', '2018-02-02 06:28:24', '838:59:59'),
('bW1pc2hyYS1oYXBweUAyMDE2', 'mmishra', '172.31.1.31', '2017-11-28 10:16:28', '2018-02-02 06:28:24', '838:59:59'),
('bW1pc2hyYS1oYXBweUAyMDE2', 'mmishra', '172.31.1.31', '2017-11-28 10:37:40', '2018-02-02 06:28:24', '838:59:59'),
('bW1pc2hyYS1oYXBweUAyMDE2', 'mmishra', '172.31.1.31', '2017-11-28 10:41:49', '2018-02-02 06:28:24', '838:59:59'),
('bW1pc2hyYS1oYXBweUAyMDE2', 'mmishra', '172.31.1.31', '2017-11-28 10:44:42', '2018-02-02 06:28:24', '838:59:59'),
('bW1pc2hyYS1oYXBweUAyMDE2', 'mmishra', '172.31.1.31', '2017-11-28 10:46:10', '2018-02-02 06:28:24', '838:59:59'),
('bW1pc2hyYS1oYXBweUAyMDE2', 'mmishra', '172.31.1.31', '2017-11-30 07:07:17', '2018-02-02 06:28:24', '838:59:59'),
('bW1pc2hyYS1oYXBweUAyMDE2', 'mmishra', '172.31.1.6', '2017-12-19 10:29:04', '2018-02-02 06:28:24', '838:59:59'),
('bW1pc2hyYS1oYXBweUAyMDE2', 'mmishra', '172.31.1.6', '2017-12-19 11:49:24', '2018-02-02 06:28:24', '838:59:59'),
('bW1pc2hyYS1oYXBweUAyMDE2', 'mmishra', '172.31.1.32', '2018-01-10 18:11:34', '2018-02-02 06:28:24', '540:16:50'),
('bW1pc2hyYS1oYXBweUAyMDE2', 'mmishra', '172.31.1.32', '2018-01-13 04:04:34', '2018-02-02 06:28:24', '482:23:50'),
('bW1pc2hyYS1oYXBweUAyMDE2', 'mmishra', '172.31.1.32', '2018-01-13 11:24:47', '2018-02-02 06:28:24', '475:03:37'),
('bW1pc2hyYS1oYXBweUAyMDE2', 'mmishra', '172.31.1.32', '2018-01-13 12:44:18', '2018-02-02 06:28:24', '473:44:06'),
('bW1pc2hyYS1oYXBweUAyMDE2', 'mmishra', '172.31.1.32', '2018-01-13 12:46:30', '2018-02-02 06:28:24', '473:41:54'),
('bW1pc2hyYS1oYXBweUAyMDE2', 'mmishra', '172.31.1.32', '2018-01-14 02:20:53', '2018-02-02 06:28:24', '460:07:31'),
('bW1pc2hyYS1oYXBweUAyMDE2', 'mmishra', '172.31.1.32', '2018-01-14 12:21:53', '2018-02-02 06:28:24', '450:06:31'),
('bW1pc2hyYS1oYXBweUAyMDE2', 'mmishra', '172.31.1.32', '2018-01-15 07:05:16', '2018-02-02 06:28:24', '431:23:08'),
('bW1pc2hyYS1oYXBweUAyMDE2', 'mmishra', '172.31.1.32', '2018-01-15 17:05:17', '2018-02-02 06:28:24', '421:23:07'),
('bW1pc2hyYS1oYXBweUAyMDE2', 'mmishra', '172.31.1.32', '2018-01-15 17:11:08', '2018-02-02 06:28:24', '421:17:16'),
('bW1pc2hyYS1oYXBweUAyMDE2', 'mmishra', '172.31.1.32', '2018-01-16 04:27:13', '2018-02-02 06:28:24', '410:01:11'),
('bW1pc2hyYS1oYXBweUAyMDE2', 'mmishra', '172.31.1.32', '2018-01-22 10:04:24', '2018-02-02 06:28:24', '260:24:00'),
('bW1pc2hyYS1oYXBweUAyMDE2', 'mmishra', '172.31.1.32', '2018-01-24 09:50:37', '2018-02-02 06:28:24', '212:37:47'),
('bW1pc2hyYS1oYXBweUAyMDE2', 'mmishra', '172.31.1.32', '2018-01-24 10:41:34', '2018-02-02 06:28:24', '211:46:50'),
('bW1pc2hyYS1oYXBweUAyMDE2', 'mmishra', '172.31.1.32', '2018-01-29 06:48:07', '2018-02-02 06:28:24', '95:40:17'),
('bW1pc2hyYS1oYXBweUAyMDE2', 'mmishra', '172.31.1.32', '2018-01-30 11:06:18', '2018-02-02 06:28:24', '67:22:06'),
('bW1pc2hyYS1oYXBweUAyMDE2', 'mmishra', '172.31.1.32', '2018-01-30 13:13:03', '2018-02-02 06:28:24', '65:15:21'),
('bW1pc2hyYS1oYXBweUAyMDE2', 'mmishra', '172.31.1.32', '2018-01-30 14:15:24', '2018-02-02 06:28:24', '64:13:00'),
('bW1pc2hyYS1oYXBweUAyMDE2', 'mmishra', '172.31.1.32', '2018-01-31 11:39:19', '2018-02-02 06:28:24', '42:49:05'),
('bW1pc2hyYS1oYXBweUAyMDE2', 'mmishra', '172.31.1.32', '2018-01-31 11:40:33', '2018-02-02 06:28:24', '42:47:51'),
('bW1pc2hyYS1oYXBweUAyMDE2', 'mmishra', '172.31.1.32', '2018-01-31 18:09:27', '2018-02-02 06:28:24', '36:18:57'),
('bW1pc2hyYS1oYXBweUAyMDE2', 'mmishra', '172.31.1.32', '2018-01-31 19:22:11', '2018-02-02 06:28:24', '35:06:13'),
('bW1pc2hyYS1oYXBweUAyMDE2', 'mmishra', '172.31.1.32', '2018-02-01 04:51:06', '2018-02-02 06:28:24', '25:37:18'),
('bW1pc2hyYS1oYXBweUAyMDE2', 'mmishra', '172.31.1.32', '2018-02-01 11:05:33', '2018-02-02 06:28:24', '19:22:51'),
('bW1pc2hyYS1oYXBweUAyMDE2', 'mmishra', '172.31.1.32', '2018-02-01 12:05:09', '2018-02-02 06:28:24', '18:23:15'),
('bW1pc2hyYS1oYXBweUAyMDE2', 'mmishra', '172.31.1.32', '2018-02-02 09:59:14', NULL, '00:00:00'),
('bW1pc2hyYS1oYXBweUAyMDE3', 'mmishra', '172.31.1.6', '2017-12-19 10:28:50', '2018-01-30 11:06:04', '838:59:59'),
('bW1pc2hyYS1oYXBweUAyMDE3', 'mmishra', '172.31.1.32', '2018-01-14 02:13:04', '2018-01-30 11:06:04', '392:53:00'),
('bW1pc2hyYS1oYXBweUAyMDE3', 'mmishra', '172.31.1.32', '2018-01-22 10:04:08', '2018-01-30 11:06:04', '193:01:56'),
('bW1pc2hyYS1oYXBweUAyMDE3', 'mmishra', '172.31.1.32', '2018-01-24 09:50:55', '2018-01-30 11:06:04', '145:15:09'),
('bW1pc2hyYS1oYXBweUAyMDE3', 'mmishra', '172.31.1.32', '2018-01-29 06:48:19', '2018-01-30 11:06:04', '28:17:45'),
('c2suc2luZ2gtc3VyZW5kcmExMw==', 'sk.singh', '172.31.1.6', '2018-02-01 08:45:16', '2018-02-01 12:05:09', '03:19:53'),
('c2suc2luZ2hAaWlpdGEuYWMuaW4tc3VyZW5kcmExMw==', 'sk.singh@i', '172.31.1.6', '2018-01-31 12:42:48', '2018-01-31 18:09:27', '00:00:00'),
('YWJoaW5hYmEtZG9uVGlnZXIqYW1hcjg3', 'abhinaba', '172.31.1.32', '2018-01-15 06:06:05', '2018-01-15 17:05:17', '00:00:00'),
('YWJoaXNoZWtrckBpaWl0YS5hYy5pbi1mcmVlZG9tOTgzMDE3Mj', 'abhishekkr', '172.31.1.6', '2018-01-31 12:36:34', '2018-01-31 18:09:27', '00:00:00'),
('YWRtaW4tYWRtaW4=', 'admin', '172.31.1.32', '2017-12-22 16:49:11', '2018-01-10 18:01:30', '00:00:00'),
('ZHVyZ2VzaC1paWl0YTkwMA==', 'durgesh', '172.31.1.101', '2018-02-01 07:28:20', '2018-02-01 07:34:39', '00:06:19');

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

--
-- Table structure for table `webusers`
--

CREATE TABLE `webusers` (
  `userID` varchar(10) NOT NULL DEFAULT '',
  `email` varchar(100) NOT NULL,
  `role` varchar(10) DEFAULT 'Staff',
  `dateCreation` datetime DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=latin1;

--
-- Dumping data for table `webusers`
--

INSERT INTO `webusers` (`userID`, `email`, `role`, `dateCreation`) VALUES
('abhishekkr', 'abhishekkr@iiita.ac.in', 'Operator', '2016-05-04 00:00:00'),
('lnsharma', 'lnsharma@iiita.ac.in', 'Operator', '2018-01-31 00:00:00'),
('mmishra', 'transport@iiita.ac.in', 'Admin', '2015-04-20 15:26:26'),
('sk.singh', 'sk.singh@iiita.ac.in', 'Operator', '2018-01-31 00:00:00');

--
-- Indexes for dumped tables
--

--
-- Indexes for table `t_attachments`
--
ALTER TABLE `t_attachments`
  ADD PRIMARY KEY (`rowID`),
  ADD UNIQUE KEY `objectName` (`objectName`,`fileName`);

--
-- Indexes for table `t_commuters`
--
ALTER TABLE `t_commuters`
  ADD PRIMARY KEY (`rowID`);

--
-- Indexes for table `t_drivers`
--
ALTER TABLE `t_drivers`
  ADD PRIMARY KEY (`rowID`),
  ADD UNIQUE KEY `driverName` (`driverName`),
  ADD UNIQUE KEY `phoneNo` (`phoneNo`);

--
-- Indexes for table `t_dutyroster`
--
ALTER TABLE `t_dutyroster`
  ADD PRIMARY KEY (`rowID`),
  ADD UNIQUE KEY `driverID` (`driverID`,`timeStart`);

--
-- Indexes for table `t_feedbacks`
--
ALTER TABLE `t_feedbacks`
  ADD PRIMARY KEY (`rowID`);

--
-- Indexes for table `t_helpers`
--
ALTER TABLE `t_helpers`
  ADD PRIMARY KEY (`rowID`),
  ADD UNIQUE KEY `phoneNo` (`phoneNo`),
  ADD UNIQUE KEY `helperName` (`helperName`);

--
-- Indexes for table `t_holidays`
--
ALTER TABLE `t_holidays`
  ADD PRIMARY KEY (`rowID`);

--
-- Indexes for table `t_refillings`
--
ALTER TABLE `t_refillings`
  ADD PRIMARY KEY (`rowID`),
  ADD UNIQUE KEY `vehicleID` (`vehicleID`,`dateRefilling`);

--
-- Indexes for table `t_repairings`
--
ALTER TABLE `t_repairings`
  ADD PRIMARY KEY (`rowID`),
  ADD UNIQUE KEY `vehicleID` (`vehicleID`,`dateRepairing`);

--
-- Indexes for table `t_requisitions`
--
ALTER TABLE `t_requisitions`
  ADD PRIMARY KEY (`rowID`);

--
-- Indexes for table `t_routes`
--
ALTER TABLE `t_routes`
  ADD PRIMARY KEY (`rowID`),
  ADD UNIQUE KEY `routeID` (`routeID`);

--
-- Indexes for table `t_runnings`
--
ALTER TABLE `t_runnings`
  ADD PRIMARY KEY (`rowID`),
  ADD UNIQUE KEY `vehicleID` (`vehicleID`,`dateRunning`);

--
-- Indexes for table `t_schedules`
--
ALTER TABLE `t_schedules`
  ADD PRIMARY KEY (`rowID`),
  ADD UNIQUE KEY `startTime` (`timeStart`,`vehicleID`);

--
-- Indexes for table `t_schools`
--
ALTER TABLE `t_schools`
  ADD PRIMARY KEY (`rowID`),
  ADD UNIQUE KEY `schoolName` (`schoolName`);

--
-- Indexes for table `t_schooltimings`
--
ALTER TABLE `t_schooltimings`
  ADD PRIMARY KEY (`rowID`),
  ADD UNIQUE KEY `ward_id` (`wardID`);

--
-- Indexes for table `t_sysconfig`
--
ALTER TABLE `t_sysconfig`
  ADD PRIMARY KEY (`rowID`);

--
-- Indexes for table `t_vehicles`
--
ALTER TABLE `t_vehicles`
  ADD PRIMARY KEY (`rowID`),
  ADD UNIQUE KEY `vehicle_id` (`vehicleID`);

--
-- Indexes for table `t_wards`
--
ALTER TABLE `t_wards`
  ADD PRIMARY KEY (`rowID`);

--
-- Indexes for table `weblogs`
--
ALTER TABLE `weblogs`
  ADD PRIMARY KEY (`userID`,`remoteIP`,`dateAccess`);

--
-- Indexes for table `websessions`
--
ALTER TABLE `websessions`
  ADD PRIMARY KEY (`sessionID`,`timeLogin`);

--
-- Indexes for table `webusers`
--
ALTER TABLE `webusers`
  ADD PRIMARY KEY (`userID`);

--
-- AUTO_INCREMENT for dumped tables
--

--
-- AUTO_INCREMENT for table `t_attachments`
--
ALTER TABLE `t_attachments`
  MODIFY `rowID` int(5) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `t_commuters`
--
ALTER TABLE `t_commuters`
  MODIFY `rowID` int(4) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `t_drivers`
--
ALTER TABLE `t_drivers`
  MODIFY `rowID` int(2) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;
--
-- AUTO_INCREMENT for table `t_dutyroster`
--
ALTER TABLE `t_dutyroster`
  MODIFY `rowID` int(2) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12;
--
-- AUTO_INCREMENT for table `t_feedbacks`
--
ALTER TABLE `t_feedbacks`
  MODIFY `rowID` int(5) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;
--
-- AUTO_INCREMENT for table `t_helpers`
--
ALTER TABLE `t_helpers`
  MODIFY `rowID` int(2) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `t_holidays`
--
ALTER TABLE `t_holidays`
  MODIFY `rowID` int(5) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;
--
-- AUTO_INCREMENT for table `t_refillings`
--
ALTER TABLE `t_refillings`
  MODIFY `rowID` int(5) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT for table `t_repairings`
--
ALTER TABLE `t_repairings`
  MODIFY `rowID` int(5) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT for table `t_requisitions`
--
ALTER TABLE `t_requisitions`
  MODIFY `rowID` int(2) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;
--
-- AUTO_INCREMENT for table `t_routes`
--
ALTER TABLE `t_routes`
  MODIFY `rowID` int(2) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT for table `t_runnings`
--
ALTER TABLE `t_runnings`
  MODIFY `rowID` int(5) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT for table `t_schedules`
--
ALTER TABLE `t_schedules`
  MODIFY `rowID` int(2) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
--
-- AUTO_INCREMENT for table `t_schools`
--
ALTER TABLE `t_schools`
  MODIFY `rowID` int(2) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;
--
-- AUTO_INCREMENT for table `t_schooltimings`
--
ALTER TABLE `t_schooltimings`
  MODIFY `rowID` int(5) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
--
-- AUTO_INCREMENT for table `t_sysconfig`
--
ALTER TABLE `t_sysconfig`
  MODIFY `rowID` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `t_vehicles`
--
ALTER TABLE `t_vehicles`
  MODIFY `rowID` int(2) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
--
-- AUTO_INCREMENT for table `t_wards`
--
ALTER TABLE `t_wards`
  MODIFY `rowID` int(4) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
/*!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 */;