recuring ride
Showing
techlabz_joyride_latest.sql
deleted
100644 → 0
-- phpMyAdmin SQL Dump | |||
-- version 4.8.3 | |||
-- https://www.phpmyadmin.net/ | |||
-- | |||
-- Host: localhost:3306 | |||
-- Generation Time: Oct 23, 2018 at 05:37 AM | |||
-- Server version: 5.7.23-0ubuntu0.16.04.1 | |||
-- PHP Version: 7.1.14 | |||
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; | |||
SET AUTOCOMMIT = 0; | |||
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: `techlabz_joyride_latest` | |||
-- | |||
-- -------------------------------------------------------- | |||
-- | |||
-- Table structure for table `admin` | |||
-- | |||
CREATE TABLE `admin` ( | |||
`id` int(10) NOT NULL, | |||
`username` varchar(10) NOT NULL, | |||
`password` varchar(50) NOT NULL, | |||
`user_type` int(10) NOT NULL, | |||
`profile_picture` varchar(500) NOT NULL | |||
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |||
-- | |||
-- Dumping data for table `admin` | |||
-- | |||
INSERT INTO `admin` (`id`, `username`, `password`, `user_type`, `profile_picture`) VALUES | |||
(6, 'admin', '21232f297a57a5a743894a0e4a801fc3', 1, ''); | |||
-- -------------------------------------------------------- | |||
-- | |||
-- Table structure for table `booking` | |||
-- | |||
CREATE TABLE `booking` ( | |||
`id` int(11) NOT NULL, | |||
`user_id` int(11) NOT NULL, | |||
`booking_id` varchar(20) DEFAULT NULL, | |||
`booking_date` varchar(100) DEFAULT NULL, | |||
`ride_id` int(11) DEFAULT NULL, | |||
`status` int(11) DEFAULT '0' COMMENT '0 =>Pending, 1=>Accept , 2=>Reject, 3=>cancelled_by_user, 4=>cancelled_by_owner,5=>completed', | |||
`departure_point` varchar(100) DEFAULT NULL, | |||
`drop_point` varchar(100) DEFAULT NULL, | |||
`no_of_seats` int(11) DEFAULT NULL, | |||
`amount` varchar(100) DEFAULT NULL | |||
) ENGINE=MyISAM DEFAULT CHARSET=latin1; | |||
-- | |||
-- Dumping data for table `booking` | |||
-- | |||
INSERT INTO `booking` (`id`, `user_id`, `booking_id`, `booking_date`, `ride_id`, `status`, `departure_point`, `drop_point`, `no_of_seats`, `amount`) VALUES | |||
(157, 352, 'JY260218372', '2018-02-26', 594, 0, 'Kottayam, Kerala, India', 'Thiruvananthapuram, Kerala, India', 1, '50'), | |||
(158, 357, 'JY020318824', '2018-03-02', 606, 1, 'Kiel, Germany', 'Hamburg, Germany', 1, '50'); | |||
-- -------------------------------------------------------- | |||
-- | |||
-- Table structure for table `booking_approve` | |||
-- | |||
CREATE TABLE `booking_approve` ( | |||
`id` int(11) NOT NULL, | |||
`ride_id` int(11) DEFAULT NULL, | |||
`user_id` int(11) DEFAULT NULL, | |||
`driver_id` int(11) DEFAULT NULL, | |||
`status` int(11) DEFAULT NULL COMMENT '1=>Approved, 2=>Completed', | |||
`payment_type` int(11) DEFAULT NULL, | |||
`amount` int(11) DEFAULT NULL, | |||
`code` varchar(250) DEFAULT NULL, | |||
`payment_status` int(11) DEFAULT NULL | |||
) ENGINE=MyISAM DEFAULT CHARSET=latin1; | |||
-- | |||
-- Dumping data for table `booking_approve` | |||
-- | |||
INSERT INTO `booking_approve` (`id`, `ride_id`, `user_id`, `driver_id`, `status`, `payment_type`, `amount`, `code`, `payment_status`) VALUES | |||
(83, 606, 357, 158, 1, NULL, NULL, NULL, NULL); | |||
-- -------------------------------------------------------- | |||
-- | |||
-- Table structure for table `book_push` | |||
-- | |||
CREATE TABLE `book_push` ( | |||
`id` int(11) NOT NULL, | |||
`user_id` int(11) NOT NULL, | |||
`book_id` int(11) NOT NULL | |||
) ENGINE=MyISAM DEFAULT CHARSET=latin1; | |||
-- | |||
-- Dumping data for table `book_push` | |||
-- | |||
INSERT INTO `book_push` (`id`, `user_id`, `book_id`) VALUES | |||
(37, 352, 351), | |||
(38, 357, 356); | |||
-- -------------------------------------------------------- | |||
-- | |||
-- Table structure for table `car_color` | |||
-- | |||
CREATE TABLE `car_color` ( | |||
`id` int(11) NOT NULL, | |||
`car_color` varchar(50) DEFAULT NULL, | |||
`status` int(11) NOT NULL DEFAULT '1' COMMENT '0 =>InActive , 1 =>Active ' | |||
) ENGINE=MyISAM DEFAULT CHARSET=latin1; | |||
-- | |||
-- Dumping data for table `car_color` | |||
-- | |||
INSERT INTO `car_color` (`id`, `car_color`, `status`) VALUES | |||
(16, 'Red', 1), | |||
(2, 'White', 1), | |||
(3, 'Black', 1), | |||
(15, 'Blue', 1); | |||
-- -------------------------------------------------------- | |||
-- | |||
-- Table structure for table `car_details` | |||
-- | |||
CREATE TABLE `car_details` ( | |||
`id` int(11) NOT NULL, | |||
`user_id` int(11) DEFAULT NULL, | |||
`car_make` int(11) DEFAULT NULL, | |||
`car_type` varchar(255) DEFAULT NULL, | |||
`car_year` varchar(255) DEFAULT NULL, | |||
`car_color` int(11) DEFAULT NULL, | |||
`no_of_seats` int(11) DEFAULT NULL, | |||
`car_image` varchar(255) DEFAULT NULL, | |||
`status` int(11) DEFAULT '1' COMMENT '0=>inactive, 1=>active' | |||
) ENGINE=MyISAM DEFAULT CHARSET=latin1; | |||
-- | |||
-- Dumping data for table `car_details` | |||
-- | |||
INSERT INTO `car_details` (`id`, `user_id`, `car_make`, `car_type`, `car_year`, `car_color`, `no_of_seats`, `car_image`, `status`) VALUES | |||
(104, 175, 1, 'Hatchback', '2012', 15, 4, 'http://techlabz.in/joyride/./assets/uploads/profile_pic/578301099tmp_image_65-78-11412785895.png', 1), | |||
(105, 178, 2, 'Convertible', '2015', 3, 5, NULL, 1), | |||
(106, 178, 2, 'Convertible', '2015', 3, 5, NULL, 1), | |||
(107, 188, 38, '2', '2013', 3, 5, NULL, 1), | |||
(108, 185, 38, '2', '2013', 3, 4, NULL, 1), | |||
(109, 185, 38, '2', '2013', 15, 4, NULL, 1), | |||
(110, 191, 38, '2', '2013', 15, 4, 'http://techlabz.in/joyride/./assets/uploads/profile_pic/1745495972tmp_Screenshot_2017-11-02-17-31-04-964_com.techware.joyride1441998660.png', 1), | |||
(111, 175, 38, '3', '2012', 3, 5, 'http://techlabz.in/joyride/./assets/uploads/profile_pic/403237977tmp_Tempimage_2-0-15-584846815.png', 1), | |||
(112, 194, 37, '2', '2013', 2, 4, NULL, 1), | |||
(113, 178, 38, '2', '2009', 3, 5, NULL, 1), | |||
(114, 197, 38, '2', '2013', 3, 5, NULL, 1), | |||
(115, 197, 37, '3', '2013', 3, 5, NULL, 1), | |||
(116, 198, 2, '2', '2013', 15, 4, 'http://techlabz.in/joyride/./assets/uploads/profile_pic/358823091tmp_Screenshot_2017-11-03-22-25-04-839659404.png', 1), | |||
(117, 199, 2, '2', '2015', 3, 4, NULL, 1), | |||
(118, 199, 38, '2', '2014', 3, 5, NULL, 1), | |||
(119, 200, 1, '2', '2010', 16, 6, NULL, 1), | |||
(120, 202, 1, '2', '2010', 16, 5, NULL, 1), | |||
(121, 209, 2, '2', '2015', 3, 6, NULL, 1), | |||
(122, 212, 1, '3', '2016', 2, 4, NULL, 1), | |||
(123, 213, 38, '2', '2012', 2, 4, NULL, 1), | |||
(124, 213, 37, '3', '2012', 15, 4, NULL, 1), | |||
(125, 217, 2, '3', '2015', 3, 4, NULL, 1), | |||
(126, 220, 38, '2', '2016', 3, 4, NULL, 1), | |||
(127, 222, 38, '2', '2012', 3, 4, NULL, 1), | |||
(128, 227, 1, '3', '2016', 3, 4, NULL, 1), | |||
(129, 231, 2, '2', '2013', 3, 4, NULL, 1), | |||
(130, 234, 1, '3', '2013', 3, 5, NULL, 1), | |||
(131, 237, 33, '3', '2017', 15, 4, NULL, 1), | |||
(132, 240, 2, '2', '2015', 2, 3, NULL, 1), | |||
(133, 241, 2, '3', '2005', 15, 8, NULL, 1), | |||
(134, 243, 2, '2', '2014', 3, 4, NULL, 1), | |||
(135, 252, 2, '2', '2013', 3, 4, NULL, 1), | |||
(136, 255, 38, '3', '2013', 3, 4, NULL, 1), | |||
(137, 260, 38, '2', '2012', 3, 4, NULL, 1), | |||
(138, 261, 33, '2', '1989', 2, 4, NULL, 1), | |||
(139, 272, 1, '2', '2017', 16, 3, NULL, 1), | |||
(140, 273, 2, '2', '2013', 3, 3, NULL, 1), | |||
(141, 281, 33, '3', '2010', 2, 4, 'http://techlabz.in/jyride_product/jyride/./assets/uploads/profile_pic/1421654938tmp_IMG_20180101_1545335791105172299.jpg', 1), | |||
(142, 282, 38, '3', '2017', 16, 1, NULL, 1), | |||
(143, 285, 38, '2', '2014', 3, 4, NULL, 1), | |||
(144, 286, 38, '3', '2017', 16, 4, NULL, 1), | |||
(145, 289, 38, '2', '2010', 2, 5, NULL, 1), | |||
(146, 292, 33, '3', '2014', 2, 3, NULL, 1), | |||
(147, 297, 1, '2', '2017', 3, 6, NULL, 1), | |||
(148, 288, 1, '2', '2014', 2, 3, NULL, 1), | |||
(149, 300, 2, '2', '2012', 16, 2, NULL, 1), | |||
(150, 301, 2, '2', '2013', 3, 4, NULL, 1), | |||
(151, 303, 37, '3', '2010', 3, 2, NULL, 1), | |||
(152, 307, 2, '2', '2018', 3, 6, NULL, 1), | |||
(153, 298, 2, '3', '2016', 15, 4, NULL, 1), | |||
(154, 311, 38, '3', '2013', 3, 2, NULL, 1), | |||
(155, 316, 1, '3', '2015', 2, 4, NULL, 1), | |||
(156, 319, 1, '2', '2015', 3, 4, NULL, 1), | |||
(157, 321, 38, '3', '2018', 16, 4, NULL, 1), | |||
(158, 322, 38, '2', '2009', 2, 4, NULL, 1), | |||
(159, 325, 39, '3', '2018', 2, 3, 'http://techlabz.in/jyride_product/jyride/./assets/uploads/profile_pic/1954720262tmp_IMG-20180205-WA00111781279809.jpg', 1), | |||
(160, 326, 2, '2', '2016', 2, 4, NULL, 1), | |||
(161, 324, 1, '2', '2013', 3, 2, NULL, 1), | |||
(162, 327, 1, '2', '2015', 3, 3, NULL, 1), | |||
(163, 328, 39, '3', '2016', 3, 4, NULL, 1), | |||
(164, 329, 39, '3', '2014', 3, 3, NULL, 1), | |||
(165, 332, 37, '2', '2013', 3, 3, NULL, 1), | |||
(166, 335, 2, '3', '2014', 3, 4, NULL, 1), | |||
(167, 337, 39, '3', '2009', 3, 2, NULL, 1), | |||
(168, 341, 37, '3', '2007', 3, 3, NULL, 1), | |||
(169, 343, 37, '2', '2017', 3, 4, NULL, 1), | |||
(170, 344, 1, '2', '2018', 2, 6, NULL, 1), | |||
(171, 344, 2, '2', '2010', 16, 4, NULL, 1), | |||
(172, 344, 38, '3', '2015', 3, 4, NULL, 1), | |||
(173, 345, 2, '2', '2017', 2, 4, NULL, 1), | |||
(174, 345, 39, '2', '2015', 3, 4, NULL, 1), | |||
(175, 346, 38, '3', '2014', 3, 4, NULL, 1), | |||
(176, 350, 39, '3', '2016', 15, 2, NULL, 1), | |||
(102, 173, 36, 'SUV', '2013', 2, 4, 'http://techlabz.in/joyride/./assets/uploads/profile_pic/16680960tmp_0LfGYj5ceAp0WuuD8F6M3PEZNpx-900405112.jpg', 1), | |||
(11, 174, 36, 'SUV', '2013', 15, 6, NULL, 1), | |||
(177, 351, 2, '2', '2015', 3, 4, NULL, 1), | |||
(178, 352, 1, '2', '2010', 2, 4, NULL, 1), | |||
(179, 355, 39, '2', '2013', 3, 4, NULL, 1), | |||
(180, 356, 39, '3', '2008', 3, 4, NULL, 1), | |||
(181, 73, 39, '2', '2010', 3, 4, NULL, 1), | |||
(182, 400, 39, NULL, NULL, NULL, 3, NULL, 1), | |||
(183, 401, 39, NULL, NULL, NULL, 4, 'http://techlabz.in/tukkibi/./assets/uploads/profile_pic/452952919tmp_IMG-20180810-WA0002473675752.jpg', 1); | |||
-- -------------------------------------------------------- | |||
-- | |||
-- Table structure for table `car_make` | |||
-- | |||
CREATE TABLE `car_make` ( | |||
`id` int(11) NOT NULL, | |||
`car_type` varchar(255) DEFAULT NULL, | |||
`image` varchar(250) NOT NULL, | |||
`status` int(11) NOT NULL DEFAULT '1' COMMENT '0 =>InActive , 1 =>Active ' | |||
) ENGINE=MyISAM DEFAULT CHARSET=latin1; | |||
-- | |||
-- Dumping data for table `car_make` | |||
-- | |||
INSERT INTO `car_make` (`id`, `car_type`, `image`, `status`) VALUES | |||
(1, 'maruti swift', '', 1), | |||
(2, 'toyota innova', '', 1), | |||
(39, 'Audi A4', '', 1), | |||
(38, 'ferrrari', '', 1), | |||
(37, 'Nano', '', 1), | |||
(33, 'def', '', 1), | |||
(40, 'testcar', '', 1); | |||
-- -------------------------------------------------------- | |||
-- | |||
-- Table structure for table `car_type` | |||
-- | |||
CREATE TABLE `car_type` ( | |||
`id` int(11) NOT NULL, | |||
`type` varchar(255) NOT NULL, | |||
`status` int(11) NOT NULL DEFAULT '1' COMMENT '0=>Active, 1=>Active' | |||
) ENGINE=MyISAM DEFAULT CHARSET=latin1; | |||
-- | |||
-- Dumping data for table `car_type` | |||
-- | |||
INSERT INTO `car_type` (`id`, `type`, `status`) VALUES | |||
(2, 'Honda', 1), | |||
(3, 'Car', 1), | |||
(4, 'cars', 1); | |||
-- -------------------------------------------------------- | |||
-- | |||
-- Table structure for table `chat` | |||
-- | |||
CREATE TABLE `chat` ( | |||
`id` int(11) NOT NULL, | |||
`ride_id` int(11) DEFAULT NULL, | |||
`booking_id` varchar(100) DEFAULT NULL, | |||
`type` varchar(100) DEFAULT NULL, | |||
`to_user` varchar(100) DEFAULT NULL, | |||
`message` varchar(100) DEFAULT NULL, | |||
`message_date` varchar(100) DEFAULT NULL, | |||
`status` int(11) NOT NULL COMMENT '0 =>Inactive, 1 =>Active' | |||
) ENGINE=MyISAM DEFAULT CHARSET=latin1; | |||
-- -------------------------------------------------------- | |||
-- | |||
-- Table structure for table `cms` | |||
-- | |||
CREATE TABLE `cms` ( | |||
`id` int(10) NOT NULL, | |||
`help` longtext NOT NULL, | |||
`conditions` longtext NOT NULL, | |||
`privacy` longtext NOT NULL, | |||
`licenses` longtext NOT NULL | |||
) ENGINE=MyISAM DEFAULT CHARSET=latin1; | |||
-- | |||
-- Dumping data for table `cms` | |||
-- | |||
INSERT INTO `cms` (`id`, `help`, `conditions`, `privacy`, `licenses`) VALUES | |||
(1, '<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. aa</p>', '<p>1Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. bb</p>', '<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. cc</p>', '<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum. dd</p>'); | |||
-- -------------------------------------------------------- | |||
-- | |||
-- Table structure for table `countries` | |||
-- | |||
CREATE TABLE `countries` ( | |||
`id` int(11) NOT NULL, | |||
`id_countries` int(3) UNSIGNED NOT NULL, | |||
`name` varchar(200) DEFAULT NULL, | |||
`iso_alpha2` varchar(2) DEFAULT NULL, | |||
`iso_alpha3` varchar(3) DEFAULT NULL, | |||
`iso_numeric` int(11) DEFAULT NULL, | |||
`currency_code` char(3) DEFAULT NULL, | |||
`currency_name` varchar(32) DEFAULT NULL, | |||
`currrency_symbol` varchar(3) DEFAULT NULL, | |||
`flag` varchar(6) DEFAULT NULL | |||
) ENGINE=MyISAM DEFAULT CHARSET=utf8; | |||
-- | |||
-- Dumping data for table `countries` | |||
-- | |||
INSERT INTO `countries` (`id`, `id_countries`, `name`, `iso_alpha2`, `iso_alpha3`, `iso_numeric`, `currency_code`, `currency_name`, `currrency_symbol`, `flag`) VALUES | |||
(1, 1, 'Afghanistan', 'AF', 'AFG', 4, 'AFN', 'Afghani', '؋', 'AF.png'); | |||
-- -------------------------------------------------------- | |||
-- | |||
-- Table structure for table `countries_list` | |||
-- | |||
CREATE TABLE `countries_list` ( | |||
`id` int(6) UNSIGNED NOT NULL, | |||
`id_countries` int(3) UNSIGNED NOT NULL, | |||
`name` varchar(200) DEFAULT NULL, | |||
`iso_alpha2` varchar(2) DEFAULT NULL, | |||
`iso_alpha3` varchar(3) DEFAULT NULL, | |||
`iso_numeric` int(11) DEFAULT NULL, | |||
`currency_code` char(3) DEFAULT NULL, | |||
`currency_name` varchar(32) DEFAULT NULL, | |||
`currrency_symbol` varchar(3) DEFAULT NULL, | |||
`flag` varchar(6) DEFAULT NULL | |||
) ENGINE=MyISAM DEFAULT CHARSET=utf8; | |||
-- | |||
-- Dumping data for table `countries_list` | |||
-- | |||
INSERT INTO `countries_list` (`id`, `id_countries`, `name`, `iso_alpha2`, `iso_alpha3`, `iso_numeric`, `currency_code`, `currency_name`, `currrency_symbol`, `flag`) VALUES | |||
(1, 1, 'Afghanistan', 'AF', 'AFG', 4, 'AFN', 'Afghani', '؋', 'AF.png'), | |||
(2, 2, 'Albania', 'AL', 'ALB', 8, 'ALL', 'Lek', 'Lek', 'AL.png'), | |||
(3, 3, 'Algeria', 'DZ', 'DZA', 12, 'DZD', 'Dinar', NULL, 'DZ.png'), | |||
(4, 4, 'American Samoa', 'AS', 'ASM', 16, 'USD', 'Dollar', '$', 'AS.png'), | |||
(5, 5, 'Andorra', 'AD', 'AND', 20, 'EUR', 'Euro', '€', 'AD.png'), | |||
(6, 6, 'Angola', 'AO', 'AGO', 24, 'AOA', 'Kwanza', 'Kz', 'AO.png'), | |||
(7, 7, 'Anguilla', 'AI', 'AIA', 660, 'XCD', 'Dollar', '$', 'AI.png'), | |||
(8, 8, 'Antarctica', 'AQ', 'ATA', 10, '', '', NULL, 'AQ.png'), | |||
(9, 9, 'Antigua and Barbuda', 'AG', 'ATG', 28, 'XCD', 'Dollar', '$', 'AG.png'), | |||
(10, 10, 'Argentina', 'AR', 'ARG', 32, 'ARS', 'Peso', '$', 'AR.png'), | |||
(11, 11, 'Armenia', 'AM', 'ARM', 51, 'AMD', 'Dram', NULL, 'AM.png'), | |||
(12, 12, 'Aruba', 'AW', 'ABW', 533, 'AWG', 'Guilder', 'ƒ', 'AW.png'), | |||
(13, 13, 'Australia', 'AU', 'AUS', 36, 'AUD', 'Dollar', '$', 'AU.png'), | |||
(14, 14, 'Austria', 'AT', 'AUT', 40, 'EUR', 'Euro', '€', 'AT.png'), | |||
(15, 15, 'Azerbaijan', 'AZ', 'AZE', 31, 'AZN', 'Manat', 'ман', 'AZ.png'), | |||
(16, 16, 'Bahamas', 'BS', 'BHS', 44, 'BSD', 'Dollar', '$', 'BS.png'), | |||
(17, 17, 'Bahrain', 'BH', 'BHR', 48, 'BHD', 'Dinar', NULL, 'BH.png'), | |||
(18, 18, 'Bangladesh', 'BD', 'BGD', 50, 'BDT', 'Taka', NULL, 'BD.png'), | |||
(19, 19, 'Barbados', 'BB', 'BRB', 52, 'BBD', 'Dollar', '$', 'BB.png'), | |||
(20, 20, 'Belarus', 'BY', 'BLR', 112, 'BYR', 'Ruble', 'p.', 'BY.png'), | |||
(21, 21, 'Belgium', 'BE', 'BEL', 56, 'EUR', 'Euro', '€', 'BE.png'), | |||
(22, 22, 'Belize', 'BZ', 'BLZ', 84, 'BZD', 'Dollar', 'BZ$', 'BZ.png'), | |||
(23, 23, 'Benin', 'BJ', 'BEN', 204, 'XOF', 'Franc', NULL, 'BJ.png'), | |||
(24, 24, 'Bermuda', 'BM', 'BMU', 60, 'BMD', 'Dollar', '$', 'BM.png'), | |||
(25, 25, 'Bhutan', 'BT', 'BTN', 64, 'BTN', 'Ngultrum', NULL, 'BT.png'), | |||
(26, 26, 'Bolivia', 'BO', 'BOL', 68, 'BOB', 'Boliviano', '$b', 'BO.png'), | |||
(27, 27, 'Bosnia and Herzegovina', 'BA', 'BIH', 70, 'BAM', 'Marka', 'KM', 'BA.png'), | |||
(28, 28, 'Botswana', 'BW', 'BWA', 72, 'BWP', 'Pula', 'P', 'BW.png'), | |||
(29, 29, 'Bouvet Island', 'BV', 'BVT', 74, 'NOK', 'Krone', 'kr', 'BV.png'), | |||
(30, 30, 'Brazil', 'BR', 'BRA', 76, 'BRL', 'Real', 'R$', 'BR.png'), | |||
(31, 31, 'British Indian Ocean Territory', 'IO', 'IOT', 86, 'USD', 'Dollar', '$', 'IO.png'), | |||
(32, 32, 'British Virgin Islands', 'VG', 'VGB', 92, 'USD', 'Dollar', '$', 'VG.png'), | |||
(33, 33, 'Brunei', 'BN', 'BRN', 96, 'BND', 'Dollar', '$', 'BN.png'), | |||
(34, 34, 'Bulgaria', 'BG', 'BGR', 100, 'BGN', 'Lev', 'лв', 'BG.png'), | |||
(35, 35, 'Burkina Faso', 'BF', 'BFA', 854, 'XOF', 'Franc', NULL, 'BF.png'), | |||
(36, 36, 'Burundi', 'BI', 'BDI', 108, 'BIF', 'Franc', NULL, 'BI.png'), | |||
(37, 37, 'Cambodia', 'KH', 'KHM', 116, 'KHR', 'Riels', '៛', 'KH.png'), | |||
(38, 38, 'Cameroon', 'CM', 'CMR', 120, 'XAF', 'Franc', 'FCF', 'CM.png'), | |||
(39, 39, 'Canada', 'CA', 'CAN', 124, 'CAD', 'Dollar', '$', 'CA.png'), | |||
(40, 40, 'Cape Verde', 'CV', 'CPV', 132, 'CVE', 'Escudo', NULL, 'CV.png'), | |||
(41, 41, 'Cayman Islands', 'KY', 'CYM', 136, 'KYD', 'Dollar', '$', 'KY.png'), | |||
(42, 42, 'Central African Republic', 'CF', 'CAF', 140, 'XAF', 'Franc', 'FCF', 'CF.png'), | |||
(43, 43, 'Chad', 'TD', 'TCD', 148, 'XAF', 'Franc', NULL, 'TD.png'), | |||
(44, 44, 'Chile', 'CL', 'CHL', 152, 'CLP', 'Peso', NULL, 'CL.png'), | |||
(45, 45, 'China', 'CN', 'CHN', 156, 'CNY', 'Yuan Renminbi', '¥', 'CN.png'), | |||
(46, 46, 'Christmas Island', 'CX', 'CXR', 162, 'AUD', 'Dollar', '$', 'CX.png'), | |||
(47, 47, 'Cocos Islands', 'CC', 'CCK', 166, 'AUD', 'Dollar', '$', 'CC.png'), | |||
(48, 48, 'Colombia', 'CO', 'COL', 170, 'COP', 'Peso', '$', 'CO.png'), | |||
(49, 49, 'Comoros', 'KM', 'COM', 174, 'KMF', 'Franc', NULL, 'KM.png'), | |||
(50, 50, 'Cook Islands', 'CK', 'COK', 184, 'NZD', 'Dollar', '$', 'CK.png'), | |||
(51, 51, 'Costa Rica', 'CR', 'CRI', 188, 'CRC', 'Colon', '₡', 'CR.png'), | |||
(52, 52, 'Croatia', 'HR', 'HRV', 191, 'HRK', 'Kuna', 'kn', 'HR.png'), | |||
(53, 53, 'Cuba', 'CU', 'CUB', 192, 'CUP', 'Peso', '₱', 'CU.png'), | |||
(54, 54, 'Cyprus', 'CY', 'CYP', 196, 'CYP', 'Pound', NULL, 'CY.png'), | |||
(55, 55, 'Czech Republic', 'CZ', 'CZE', 203, 'CZK', 'Koruna', 'KĿ', 'CZ.png'), | |||
(56, 56, 'Democratic Republic of the Congo', 'CD', 'COD', 180, 'CDF', 'Franc', NULL, 'CD.png'), | |||
(57, 57, 'Denmark', 'DK', 'DNK', 208, 'DKK', 'Krone', 'kr', 'DK.png'), | |||
(58, 58, 'Djibouti', 'DJ', 'DJI', 262, 'DJF', 'Franc', NULL, 'DJ.png'), | |||
(59, 59, 'Dominica', 'DM', 'DMA', 212, 'XCD', 'Dollar', '$', 'DM.png'), | |||
(60, 60, 'Dominican Republic', 'DO', 'DOM', 214, 'DOP', 'Peso', 'RD$', 'DO.png'), | |||
(61, 61, 'East Timor', 'TL', 'TLS', 626, 'USD', 'Dollar', '$', 'TL.png'), | |||
(62, 62, 'Ecuador', 'EC', 'ECU', 218, 'USD', 'Dollar', '$', 'EC.png'), | |||
(63, 63, 'Egypt', 'EG', 'EGY', 818, 'EGP', 'Pound', '£', 'EG.png'), | |||
(64, 64, 'El Salvador', 'SV', 'SLV', 222, 'SVC', 'Colone', '$', 'SV.png'), | |||
(65, 65, 'Equatorial Guinea', 'GQ', 'GNQ', 226, 'XAF', 'Franc', 'FCF', 'GQ.png'), | |||
(66, 66, 'Eritrea', 'ER', 'ERI', 232, 'ERN', 'Nakfa', 'Nfk', 'ER.png'), | |||
(67, 67, 'Estonia', 'EE', 'EST', 233, 'EEK', 'Kroon', 'kr', 'EE.png'), | |||
(68, 68, 'Ethiopia', 'ET', 'ETH', 231, 'ETB', 'Birr', NULL, 'ET.png'), | |||
(69, 69, 'Falkland Islands', 'FK', 'FLK', 238, 'FKP', 'Pound', '£', 'FK.png'), | |||
(70, 70, 'Faroe Islands', 'FO', 'FRO', 234, 'DKK', 'Krone', 'kr', 'FO.png'), | |||
(71, 71, 'Fiji', 'FJ', 'FJI', 242, 'FJD', 'Dollar', '$', 'FJ.png'), | |||
(72, 72, 'Finland', 'FI', 'FIN', 246, 'EUR', 'Euro', '€', 'FI.png'), | |||
(73, 73, 'France', 'FR', 'FRA', 250, 'EUR', 'Euro', '€', 'FR.png'), | |||
(74, 74, 'French Guiana', 'GF', 'GUF', 254, 'EUR', 'Euro', '€', 'GF.png'), | |||
(75, 75, 'French Polynesia', 'PF', 'PYF', 258, 'XPF', 'Franc', NULL, 'PF.png'), | |||
(76, 76, 'French Southern Territories', 'TF', 'ATF', 260, 'EUR', 'Euro ', '€', 'TF.png'), | |||
(77, 77, 'Gabon', 'GA', 'GAB', 266, 'XAF', 'Franc', 'FCF', 'GA.png'), | |||
(78, 78, 'Gambia', 'GM', 'GMB', 270, 'GMD', 'Dalasi', 'D', 'GM.png'), | |||
(79, 79, 'Georgia', 'GE', 'GEO', 268, 'GEL', 'Lari', NULL, 'GE.png'), | |||
(80, 80, 'Germany', 'DE', 'DEU', 276, 'EUR', 'Euro', '€', 'DE.png'), | |||
(81, 81, 'Ghana', 'GH', 'GHA', 288, 'GHC', 'Cedi', '¢', 'GH.png'), | |||
(82, 82, 'Gibraltar', 'GI', 'GIB', 292, 'GIP', 'Pound', '£', 'GI.png'), | |||
(83, 83, 'Greece', 'GR', 'GRC', 300, 'EUR', 'Euro', '€', 'GR.png'), | |||
(84, 84, 'Greenland', 'GL', 'GRL', 304, 'DKK', 'Krone', 'kr', 'GL.png'), | |||
(85, 85, 'Grenada', 'GD', 'GRD', 308, 'XCD', 'Dollar', '$', 'GD.png'), | |||
(86, 86, 'Guadeloupe', 'GP', 'GLP', 312, 'EUR', 'Euro', '€', 'GP.png'), | |||
(87, 87, 'Guam', 'GU', 'GUM', 316, 'USD', 'Dollar', '$', 'GU.png'), | |||
(88, 88, 'Guatemala', 'GT', 'GTM', 320, 'GTQ', 'Quetzal', 'Q', 'GT.png'), | |||
(89, 89, 'Guinea', 'GN', 'GIN', 324, 'GNF', 'Franc', NULL, 'GN.png'), | |||
(90, 90, 'Guinea-Bissau', 'GW', 'GNB', 624, 'XOF', 'Franc', NULL, 'GW.png'), | |||
(91, 91, 'Guyana', 'GY', 'GUY', 328, 'GYD', 'Dollar', '$', 'GY.png'), | |||
(92, 92, 'Haiti', 'HT', 'HTI', 332, 'HTG', 'Gourde', 'G', 'HT.png'), | |||
(93, 93, 'Heard Island and McDonald Islands', 'HM', 'HMD', 334, 'AUD', 'Dollar', '$', 'HM.png'), | |||
(94, 94, 'Honduras', 'HN', 'HND', 340, 'HNL', 'Lempira', 'L', 'HN.png'), | |||
(95, 95, 'Hong Kong', 'HK', 'HKG', 344, 'HKD', 'Dollar', '$', 'HK.png'), | |||
(96, 96, 'Hungary', 'HU', 'HUN', 348, 'HUF', 'Forint', 'Ft', 'HU.png'), | |||
(97, 97, 'Iceland', 'IS', 'ISL', 352, 'ISK', 'Krona', 'kr', 'IS.png'), | |||
(98, 98, 'India', 'IN', 'IND', 356, 'INR', 'Rupee', '₹', 'IN.png'), | |||
(99, 99, 'Indonesia', 'ID', 'IDN', 360, 'IDR', 'Rupiah', 'Rp', 'ID.png'), | |||
(100, 100, 'Iran', 'IR', 'IRN', 364, 'IRR', 'Rial', '﷼', 'IR.png'), | |||
(101, 101, 'Iraq', 'IQ', 'IRQ', 368, 'IQD', 'Dinar', NULL, 'IQ.png'), | |||
(102, 102, 'Ireland', 'IE', 'IRL', 372, 'EUR', 'Euro', '€', 'IE.png'), | |||
(103, 103, 'Israel', 'IL', 'ISR', 376, 'ILS', 'Shekel', '₪', 'IL.png'), | |||
(104, 104, 'Italy', 'IT', 'ITA', 380, 'EUR', 'Euro', '€', 'IT.png'), | |||
(105, 105, 'Ivory Coast', 'CI', 'CIV', 384, 'XOF', 'Franc', NULL, 'CI.png'), | |||
(106, 106, 'Jamaica', 'JM', 'JAM', 388, 'JMD', 'Dollar', '$', 'JM.png'), | |||
(107, 107, 'Japan', 'JP', 'JPN', 392, 'JPY', 'Yen', '¥', 'JP.png'), | |||
(108, 108, 'Jordan', 'JO', 'JOR', 400, 'JOD', 'Dinar', NULL, 'JO.png'), | |||
(109, 109, 'Kazakhstan', 'KZ', 'KAZ', 398, 'KZT', 'Tenge', 'лв', 'KZ.png'), | |||
(110, 110, 'Kenya', 'KE', 'KEN', 404, 'KES', 'Shilling', NULL, 'KE.png'), | |||
(111, 111, 'Kiribati', 'KI', 'KIR', 296, 'AUD', 'Dollar', '$', 'KI.png'), | |||
(112, 112, 'Kuwait', 'KW', 'KWT', 414, 'KWD', 'Dinar', NULL, 'KW.png'), | |||
(113, 113, 'Kyrgyzstan', 'KG', 'KGZ', 417, 'KGS', 'Som', 'лв', 'KG.png'), | |||
(114, 114, 'Laos', 'LA', 'LAO', 418, 'LAK', 'Kip', '₭', 'LA.png'), | |||
(115, 115, 'Latvia', 'LV', 'LVA', 428, 'LVL', 'Lat', 'Ls', 'LV.png'), | |||
(116, 116, 'Lebanon', 'LB', 'LBN', 422, 'LBP', 'Pound', '£', 'LB.png'), | |||
(117, 117, 'Lesotho', 'LS', 'LSO', 426, 'LSL', 'Loti', 'L', 'LS.png'), | |||
(118, 118, 'Liberia', 'LR', 'LBR', 430, 'LRD', 'Dollar', '$', 'LR.png'), | |||
(119, 119, 'Libya', 'LY', 'LBY', 434, 'LYD', 'Dinar', NULL, 'LY.png'), | |||
(120, 120, 'Liechtenstein', 'LI', 'LIE', 438, 'CHF', 'Franc', 'CHF', 'LI.png'), | |||
(121, 121, 'Lithuania', 'LT', 'LTU', 440, 'LTL', 'Litas', 'Lt', 'LT.png'), | |||
(122, 122, 'Luxembourg', 'LU', 'LUX', 442, 'EUR', 'Euro', '€', 'LU.png'), | |||
(123, 123, 'Macao', 'MO', 'MAC', 446, 'MOP', 'Pataca', 'MOP', 'MO.png'), | |||
(124, 124, 'Macedonia', 'MK', 'MKD', 807, 'MKD', 'Denar', 'ден', 'MK.png'), | |||
(125, 125, 'Madagascar', 'MG', 'MDG', 450, 'MGA', 'Ariary', NULL, 'MG.png'), | |||
(126, 126, 'Malawi', 'MW', 'MWI', 454, 'MWK', 'Kwacha', 'MK', 'MW.png'), | |||
(127, 127, 'Malaysia', 'MY', 'MYS', 458, 'MYR', 'Ringgit', 'RM', 'MY.png'), | |||
(128, 128, 'Maldives', 'MV', 'MDV', 462, 'MVR', 'Rufiyaa', 'Rf', 'MV.png'), | |||
(129, 129, 'Mali', 'ML', 'MLI', 466, 'XOF', 'Franc', NULL, 'ML.png'), | |||
(130, 130, 'Malta', 'MT', 'MLT', 470, 'MTL', 'Lira', NULL, 'MT.png'), | |||
(131, 131, 'Marshall Islands', 'MH', 'MHL', 584, 'USD', 'Dollar', '$', 'MH.png'), | |||
(132, 132, 'Martinique', 'MQ', 'MTQ', 474, 'EUR', 'Euro', '€', 'MQ.png'), | |||
(133, 133, 'Mauritania', 'MR', 'MRT', 478, 'MRO', 'Ouguiya', 'UM', 'MR.png'), | |||
(134, 134, 'Mauritius', 'MU', 'MUS', 480, 'MUR', 'Rupee', '₨', 'MU.png'), | |||
(135, 135, 'Mayotte', 'YT', 'MYT', 175, 'EUR', 'Euro', '€', 'YT.png'), | |||
(136, 136, 'Mexico', 'MX', 'MEX', 484, 'MXN', 'Peso', '$', 'MX.png'), | |||
(137, 137, 'Micronesia', 'FM', 'FSM', 583, 'USD', 'Dollar', '$', 'FM.png'), | |||
(138, 138, 'Moldova', 'MD', 'MDA', 498, 'MDL', 'Leu', NULL, 'MD.png'), | |||
(139, 139, 'Monaco', 'MC', 'MCO', 492, 'EUR', 'Euro', '€', 'MC.png'), | |||
(140, 140, 'Mongolia', 'MN', 'MNG', 496, 'MNT', 'Tugrik', '₮', 'MN.png'), | |||
(141, 141, 'Montserrat', 'MS', 'MSR', 500, 'XCD', 'Dollar', '$', 'MS.png'), | |||
(142, 142, 'Morocco', 'MA', 'MAR', 504, 'MAD', 'Dirham', NULL, 'MA.png'), | |||
(143, 143, 'Mozambique', 'MZ', 'MOZ', 508, 'MZN', 'Meticail', 'MT', 'MZ.png'), | |||
(144, 144, 'Myanmar', 'MM', 'MMR', 104, 'MMK', 'Kyat', 'K', 'MM.png'), | |||
(145, 145, 'Namibia', 'NA', 'NAM', 516, 'NAD', 'Dollar', '$', 'NA.png'), | |||
(146, 146, 'Nauru', 'NR', 'NRU', 520, 'AUD', 'Dollar', '$', 'NR.png'), | |||
(147, 147, 'Nepal', 'NP', 'NPL', 524, 'NPR', 'Rupee', '₨', 'NP.png'), | |||
(148, 148, 'Netherlands', 'NL', 'NLD', 528, 'EUR', 'Euro', '€', 'NL.png'), | |||
(149, 149, 'Netherlands Antilles', 'AN', 'ANT', 530, 'ANG', 'Guilder', 'ƒ', 'AN.png'), | |||
(150, 150, 'New Caledonia', 'NC', 'NCL', 540, 'XPF', 'Franc', NULL, 'NC.png'), | |||
(151, 151, 'New Zealand', 'NZ', 'NZL', 554, 'NZD', 'Dollar', '$', 'NZ.png'), | |||
(152, 152, 'Nicaragua', 'NI', 'NIC', 558, 'NIO', 'Cordoba', 'C$', 'NI.png'), | |||
(153, 153, 'Niger', 'NE', 'NER', 562, 'XOF', 'Franc', NULL, 'NE.png'), | |||
(154, 154, 'Nigeria', 'NG', 'NGA', 566, 'NGN', 'Naira', '₦', 'NG.png'), | |||
(155, 155, 'Niue', 'NU', 'NIU', 570, 'NZD', 'Dollar', '$', 'NU.png'), | |||
(156, 156, 'Norfolk Island', 'NF', 'NFK', 574, 'AUD', 'Dollar', '$', 'NF.png'), | |||
(157, 157, 'North Korea', 'KP', 'PRK', 408, 'KPW', 'Won', '₩', 'KP.png'), | |||
(158, 158, 'Northern Mariana Islands', 'MP', 'MNP', 580, 'USD', 'Dollar', '$', 'MP.png'), | |||
(159, 159, 'Norway', 'NO', 'NOR', 578, 'NOK', 'Krone', 'kr', 'NO.png'), | |||
(160, 160, 'Oman', 'OM', 'OMN', 512, 'OMR', 'Rial', '﷼', 'OM.png'), | |||
(161, 161, 'Pakistan', 'PK', 'PAK', 586, 'PKR', 'Rupee', '₨', 'PK.png'), | |||
(162, 162, 'Palau', 'PW', 'PLW', 585, 'USD', 'Dollar', '$', 'PW.png'), | |||
(163, 163, 'Palestinian Territory', 'PS', 'PSE', 275, 'ILS', 'Shekel', '₪', 'PS.png'), | |||
(164, 164, 'Panama', 'PA', 'PAN', 591, 'PAB', 'Balboa', 'B/.', 'PA.png'), | |||
(165, 165, 'Papua New Guinea', 'PG', 'PNG', 598, 'PGK', 'Kina', NULL, 'PG.png'), | |||
(166, 166, 'Paraguay', 'PY', 'PRY', 600, 'PYG', 'Guarani', 'Gs', 'PY.png'), | |||
(167, 167, 'Peru', 'PE', 'PER', 604, 'PEN', 'Sol', 'S/.', 'PE.png'), | |||
(168, 168, 'Philippines', 'PH', 'PHL', 608, 'PHP', 'Peso', 'Php', 'PH.png'), | |||
(169, 169, 'Pitcairn', 'PN', 'PCN', 612, 'NZD', 'Dollar', '$', 'PN.png'), | |||
(170, 170, 'Poland', 'PL', 'POL', 616, 'PLN', 'Zloty', 'zł', 'PL.png'), | |||
(171, 171, 'Portugal', 'PT', 'PRT', 620, 'EUR', 'Euro', '€', 'PT.png'), | |||
(172, 172, 'Puerto Rico', 'PR', 'PRI', 630, 'USD', 'Dollar', '$', 'PR.png'), | |||
(173, 173, 'Qatar', 'QA', 'QAT', 634, 'QAR', 'Rial', '﷼', 'QA.png'), | |||
(174, 174, 'Republic of the Congo', 'CG', 'COG', 178, 'XAF', 'Franc', 'FCF', 'CG.png'), | |||
(175, 175, 'Reunion', 'RE', 'REU', 638, 'EUR', 'Euro', '€', 'RE.png'), | |||
(176, 176, 'Romania', 'RO', 'ROU', 642, 'RON', 'Leu', 'lei', 'RO.png'), | |||
(177, 177, 'Russia', 'RU', 'RUS', 643, 'RUB', 'Ruble', 'руб', 'RU.png'), | |||
(178, 178, 'Rwanda', 'RW', 'RWA', 646, 'RWF', 'Franc', NULL, 'RW.png'), | |||
(179, 179, 'Saint Helena', 'SH', 'SHN', 654, 'SHP', 'Pound', '£', 'SH.png'), | |||
(180, 180, 'Saint Kitts and Nevis', 'KN', 'KNA', 659, 'XCD', 'Dollar', '$', 'KN.png'), | |||
(181, 181, 'Saint Lucia', 'LC', 'LCA', 662, 'XCD', 'Dollar', '$', 'LC.png'), | |||
(182, 182, 'Saint Pierre and Miquelon', 'PM', 'SPM', 666, 'EUR', 'Euro', '€', 'PM.png'), | |||
(183, 183, 'Saint Vincent and the Grenadines', 'VC', 'VCT', 670, 'XCD', 'Dollar', '$', 'VC.png'), | |||
(184, 184, 'Samoa', 'WS', 'WSM', 882, 'WST', 'Tala', 'WS$', 'WS.png'), | |||
(185, 185, 'San Marino', 'SM', 'SMR', 674, 'EUR', 'Euro', '€', 'SM.png'), | |||
(186, 186, 'Sao Tome and Principe', 'ST', 'STP', 678, 'STD', 'Dobra', 'Db', 'ST.png'), | |||
(187, 187, 'Saudi Arabia', 'SA', 'SAU', 682, 'SAR', 'Rial', '﷼', 'SA.png'), | |||
(188, 188, 'Senegal', 'SN', 'SEN', 686, 'XOF', 'Franc', NULL, 'SN.png'), | |||
(189, 189, 'Serbia and Montenegro', 'CS', 'SCG', 891, 'RSD', 'Dinar', 'Дин', 'CS.png'), | |||
(190, 190, 'Seychelles', 'SC', 'SYC', 690, 'SCR', 'Rupee', '₨', 'SC.png'), | |||
(191, 191, 'Sierra Leone', 'SL', 'SLE', 694, 'SLL', 'Leone', 'Le', 'SL.png'), | |||
(192, 192, 'Singapore', 'SG', 'SGP', 702, 'SGD', 'Dollar', '$', 'SG.png'), | |||
(193, 193, 'Slovakia', 'SK', 'SVK', 703, 'SKK', 'Koruna', 'Sk', 'SK.png'), | |||
(194, 194, 'Slovenia', 'SI', 'SVN', 705, 'EUR', 'Euro', '€', 'SI.png'), | |||
(195, 195, 'Solomon Islands', 'SB', 'SLB', 90, 'SBD', 'Dollar', '$', 'SB.png'), | |||
(196, 196, 'Somalia', 'SO', 'SOM', 706, 'SOS', 'Shilling', '$', 'SO.png'), | |||
(197, 197, 'South Africa', 'ZA', 'ZAF', 710, 'ZAR', 'Rand', 'R', 'ZA.png'), | |||
(198, 198, 'South Georgia and the South Sandwich Islands', 'GS', 'SGS', 239, 'GBP', 'Pound', '£', 'GS.png'), | |||
(199, 199, 'South Korea', 'KR', 'KOR', 410, 'KRW', 'Won', '₩', 'KR.png'), | |||
(200, 200, 'Spain', 'ES', 'ESP', 724, 'EUR', 'Euro', '€', 'ES.png'), | |||
(201, 201, 'Sri Lanka', 'LK', 'LKA', 144, 'LKR', 'Rupee', '₨', 'LK.png'), | |||
(202, 202, 'Sudan', 'SD', 'SDN', 736, 'SDD', 'Dinar', NULL, 'SD.png'), | |||
(203, 203, 'Suriname', 'SR', 'SUR', 740, 'SRD', 'Dollar', '$', 'SR.png'), | |||
(204, 204, 'Svalbard and Jan Mayen', 'SJ', 'SJM', 744, 'NOK', 'Krone', 'kr', 'SJ.png'), | |||
(205, 205, 'Swaziland', 'SZ', 'SWZ', 748, 'SZL', 'Lilangeni', NULL, 'SZ.png'), | |||
(206, 206, 'Sweden', 'SE', 'SWE', 752, 'SEK', 'Krona', 'kr', 'SE.png'), | |||
(207, 207, 'Switzerland', 'CH', 'CHE', 756, 'CHF', 'Franc', 'CHF', 'CH.png'), | |||
(208, 208, 'Syria', 'SY', 'SYR', 760, 'SYP', 'Pound', '£', 'SY.png'), | |||
(209, 209, 'Taiwan', 'TW', 'TWN', 158, 'TWD', 'Dollar', 'NT$', 'TW.png'), | |||
(210, 210, 'Tajikistan', 'TJ', 'TJK', 762, 'TJS', 'Somoni', NULL, 'TJ.png'), | |||
(211, 211, 'Tanzania', 'TZ', 'TZA', 834, 'TZS', 'Shilling', NULL, 'TZ.png'), | |||
(212, 212, 'Thailand', 'TH', 'THA', 764, 'THB', 'Baht', '฿', 'TH.png'), | |||
(213, 213, 'Togo', 'TG', 'TGO', 768, 'XOF', 'Franc', NULL, 'TG.png'), | |||
(214, 214, 'Tokelau', 'TK', 'TKL', 772, 'NZD', 'Dollar', '$', 'TK.png'), | |||
(215, 215, 'Tonga', 'TO', 'TON', 776, 'TOP', 'Pa\'anga', 'T$', 'TO.png'), | |||
(216, 216, 'Trinidad and Tobago', 'TT', 'TTO', 780, 'TTD', 'Dollar', 'TT$', 'TT.png'), | |||
(217, 217, 'Tunisia', 'TN', 'TUN', 788, 'TND', 'Dinar', NULL, 'TN.png'), | |||
(218, 218, 'Turkey', 'TR', 'TUR', 792, 'TRY', 'Lira', 'YTL', 'TR.png'), | |||
(219, 219, 'Turkmenistan', 'TM', 'TKM', 795, 'TMM', 'Manat', 'm', 'TM.png'), | |||
(220, 220, 'Turks and Caicos Islands', 'TC', 'TCA', 796, 'USD', 'Dollar', '$', 'TC.png'), | |||
(221, 221, 'Tuvalu', 'TV', 'TUV', 798, 'AUD', 'Dollar', '$', 'TV.png'), | |||
(222, 222, 'U.S. Virgin Islands', 'VI', 'VIR', 850, 'USD', 'Dollar', '$', 'VI.png'), | |||
(223, 223, 'Uganda', 'UG', 'UGA', 800, 'UGX', 'Shilling', NULL, 'UG.png'), | |||
(224, 224, 'Ukraine', 'UA', 'UKR', 804, 'UAH', 'Hryvnia', '₴', 'UA.png'), | |||
(225, 225, 'United Arab Emirates', 'AE', 'ARE', 784, 'AED', 'Dirham', NULL, 'AE.png'), | |||
(226, 226, 'United Kingdom', 'GB', 'GBR', 826, 'GBP', 'Pound', '£', 'GB.png'), | |||
(227, 227, 'United States', 'US', 'USA', 840, 'USD', 'Dollar', '$', 'US.png'), | |||
(228, 228, 'United States Minor Outlying Islands', 'UM', 'UMI', 581, 'USD', 'Dollar ', '$', 'UM.png'), | |||
(229, 229, 'Uruguay', 'UY', 'URY', 858, 'UYU', 'Peso', '$U', 'UY.png'), | |||
(230, 230, 'Uzbekistan', 'UZ', 'UZB', 860, 'UZS', 'Som', 'лв', 'UZ.png'), | |||
(231, 231, 'Vanuatu', 'VU', 'VUT', 548, 'VUV', 'Vatu', 'Vt', 'VU.png'), | |||
(232, 232, 'Vatican', 'VA', 'VAT', 336, 'EUR', 'Euro', '€', 'VA.png'), | |||
(233, 233, 'Venezuela', 'VE', 'VEN', 862, 'VEF', 'Bolivar', 'Bs', 'VE.png'), | |||
(234, 234, 'Vietnam', 'VN', 'VNM', 704, 'VND', 'Dong', '₫', 'VN.png'), | |||
(235, 235, 'Wallis and Futuna', 'WF', 'WLF', 876, 'XPF', 'Franc', NULL, 'WF.png'), | |||
(236, 236, 'Western Sahara', 'EH', 'ESH', 732, 'MAD', 'Dirham', NULL, 'EH.png'), | |||
(237, 237, 'Yemen', 'YE', 'YEM', 887, 'YER', 'Rial', '﷼', 'YE.png'), | |||
(238, 238, 'Zambia', 'ZM', 'ZMB', 894, 'ZMK', 'Kwacha', 'ZK', 'ZM.png'), | |||
(239, 239, 'Zimbabwe', 'ZW', 'ZWE', 716, 'ZWD', 'Dollar', 'Z$', 'ZW.png'); | |||
-- -------------------------------------------------------- | |||
-- | |||
-- Table structure for table `customer` | |||
-- | |||
CREATE TABLE `customer` ( | |||
`id` int(11) NOT NULL, | |||
`first_name` varchar(50) NOT NULL | |||
) ENGINE=MyISAM DEFAULT CHARSET=latin1; | |||
-- -------------------------------------------------------- | |||
-- | |||
-- Table structure for table `dropping_points` | |||
-- | |||
CREATE TABLE `dropping_points` ( | |||
`id` int(11) NOT NULL, | |||
`ride_id` int(11) DEFAULT NULL, | |||
`points` varchar(100) DEFAULT NULL, | |||
`point_lat` varchar(100) DEFAULT NULL, | |||
`point_long` varchar(100) DEFAULT NULL | |||
) ENGINE=MyISAM DEFAULT CHARSET=latin1; | |||
-- -------------------------------------------------------- | |||
-- | |||
-- Table structure for table `keys` | |||
-- | |||
CREATE TABLE `keys` ( | |||
`id` int(11) NOT NULL, | |||
`key` varchar(40) NOT NULL, | |||
`level` int(11) NOT NULL, | |||
`ignore_limits` tinyint(4) NOT NULL, | |||
`date_created` int(11) NOT NULL | |||
) ENGINE=MyISAM DEFAULT CHARSET=latin1; | |||
-- | |||
-- Dumping data for table `keys` | |||
-- | |||
INSERT INTO `keys` (`id`, `key`, `level`, `ignore_limits`, `date_created`) VALUES | |||
(1, 'key_test', 1, 0, 1); | |||
-- -------------------------------------------------------- | |||
-- | |||
-- Table structure for table `notifications` | |||
-- | |||
CREATE TABLE `notifications` ( | |||
`id` int(11) NOT NULL, | |||
`user_id` int(11) NOT NULL, | |||
`push_booking_alert` int(11) NOT NULL DEFAULT '1' COMMENT '0=>Not allow, 1=>Allow', | |||
`push_ride_accept` int(11) NOT NULL DEFAULT '1' COMMENT '1=>Allow , 0=>Not Allow', | |||
`push_offer_ride_request` int(11) NOT NULL DEFAULT '1', | |||
`push_cotraveller_confirmation` int(11) NOT NULL DEFAULT '0' COMMENT '0=> Not Allow, 1 =>Allow ', | |||
`push_msg_recieved` int(11) NOT NULL DEFAULT '0' COMMENT '0=> Not Allow, 1 =>Allow ', | |||
`push_ratings` int(11) NOT NULL DEFAULT '0' COMMENT '0=> Not Allow, 1 =>Allow ', | |||
`sms_cotraveller` int(11) NOT NULL DEFAULT '0' COMMENT '0=> Not Allow, 1 =>Allow ', | |||
`email_ride_publish` int(11) NOT NULL DEFAULT '0' COMMENT '0=> Not Allow, 1 =>Allow ', | |||
`email_ride_update` int(11) NOT NULL DEFAULT '0' COMMENT '0=> Not Allow, 1 =>Allow ', | |||
`email_msg_recieved` int(11) NOT NULL DEFAULT '0' COMMENT '0=> Not Allow, 1 =>Allow ', | |||
`email_pending_ratings` int(11) NOT NULL DEFAULT '0' COMMENT '0=> Not Allow, 1 =>Allow ', | |||
`email_new_rating` int(11) NOT NULL DEFAULT '0' COMMENT '0=> Not Allow, 1 =>Allow ', | |||
`email_info` int(11) NOT NULL DEFAULT '0' COMMENT '0=> Not Allow, 1 =>Allow ' | |||
) ENGINE=MyISAM DEFAULT CHARSET=latin1; | |||
-- | |||
-- Dumping data for table `notifications` | |||
-- | |||
INSERT INTO `notifications` (`id`, `user_id`, `push_booking_alert`, `push_ride_accept`, `push_offer_ride_request`, `push_cotraveller_confirmation`, `push_msg_recieved`, `push_ratings`, `sms_cotraveller`, `email_ride_publish`, `email_ride_update`, `email_msg_recieved`, `email_pending_ratings`, `email_new_rating`, `email_info`) VALUES | |||
(300, 351, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), | |||
(301, 352, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), | |||
(302, 353, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), | |||
(303, 354, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), | |||
(304, 355, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), | |||
(305, 356, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), | |||
(306, 357, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), | |||
(307, 358, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), | |||
(308, 359, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), | |||
(309, 360, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), | |||
(310, 361, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), | |||
(311, 362, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), | |||
(312, 363, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), | |||
(313, 364, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), | |||
(314, 365, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), | |||
(315, 366, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), | |||
(316, 367, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), | |||
(317, 368, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), | |||
(318, 369, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), | |||
(319, 370, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), | |||
(320, 371, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), | |||
(321, 372, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), | |||
(322, 373, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), | |||
(323, 374, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), | |||
(324, 375, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), | |||
(325, 376, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), | |||
(326, 377, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), | |||
(327, 378, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), | |||
(328, 379, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), | |||
(329, 380, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), | |||
(330, 381, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), | |||
(331, 382, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), | |||
(332, 383, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), | |||
(333, 384, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), | |||
(334, 385, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), | |||
(335, 386, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), | |||
(336, 387, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), | |||
(337, 388, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), | |||
(338, 389, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), | |||
(339, 390, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), | |||
(340, 391, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), | |||
(341, 392, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), | |||
(342, 393, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), | |||
(343, 394, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), | |||
(344, 395, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), | |||
(345, 396, 1, 1, 1, 0, 0, 1, 0, 1, 1, 0, 0, 1, 1), | |||
(346, 397, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), | |||
(347, 398, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), | |||
(348, 399, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), | |||
(349, 400, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0), | |||
(350, 401, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); | |||
-- -------------------------------------------------------- | |||
-- | |||
-- Table structure for table `payment` | |||
-- | |||
CREATE TABLE `payment` ( | |||
`id` int(11) NOT NULL, | |||
`ride_id` int(11) DEFAULT NULL, | |||
`user_id` int(11) DEFAULT NULL, | |||
`amount` int(11) DEFAULT NULL, | |||
`transaction` int(11) DEFAULT NULL, | |||
`code` varchar(250) DEFAULT NULL, | |||
`status` int(11) DEFAULT NULL | |||
) ENGINE=MyISAM DEFAULT CHARSET=latin1; | |||
-- -------------------------------------------------------- | |||
-- | |||
-- Table structure for table `rating` | |||
-- | |||
CREATE TABLE `rating` ( | |||
`id` int(11) NOT NULL, | |||
`create_user` varchar(100) DEFAULT NULL, | |||
`owner` varchar(100) DEFAULT NULL, | |||
`ride_id` int(11) DEFAULT NULL, | |||
`rating` varchar(11) DEFAULT NULL, | |||
`book_id` int(11) DEFAULT NULL, | |||
`rating_date` varchar(100) DEFAULT NULL | |||
) ENGINE=MyISAM DEFAULT CHARSET=latin1; | |||
-- -------------------------------------------------------- | |||
-- | |||
-- Table structure for table `report` | |||
-- | |||
CREATE TABLE `report` ( | |||
`Id` int(11) NOT NULL, | |||
`user_id` int(11) DEFAULT NULL, | |||
`ride_id` int(11) DEFAULT NULL, | |||
`message` varchar(255) DEFAULT NULL, | |||
`report_date` varchar(100) DEFAULT NULL | |||
) ENGINE=MyISAM DEFAULT CHARSET=latin1; | |||
-- -------------------------------------------------------- | |||
-- | |||
-- Table structure for table `report_ride` | |||
-- | |||
CREATE TABLE `report_ride` ( | |||
`id` int(11) NOT NULL, | |||
`create_user` int(11) DEFAULT NULL, | |||
`owner` int(11) DEFAULT NULL, | |||
`comment` varchar(250) DEFAULT NULL, | |||
`date` varchar(250) NOT NULL | |||
) ENGINE=MyISAM DEFAULT CHARSET=latin1; | |||
-- -------------------------------------------------------- | |||
-- | |||
-- Table structure for table `ride` | |||
-- | |||
CREATE TABLE `ride` ( | |||
`id` int(11) NOT NULL, | |||
`users_id` int(11) DEFAULT NULL, | |||
`source_lat` varchar(100) DEFAULT NULL, | |||
`source_lng` varchar(100) DEFAULT NULL, | |||
`destination_lat` varchar(100) DEFAULT NULL, | |||
`destination_lng` varchar(100) DEFAULT NULL, | |||
`source` varchar(100) DEFAULT NULL, | |||
`destination` varchar(100) DEFAULT NULL, | |||
`departure_date` varchar(100) DEFAULT NULL, | |||
`no_of_seats` int(11) DEFAULT NULL, | |||
`ride_details` varchar(100) DEFAULT NULL, | |||
`car_id` int(11) DEFAULT NULL, | |||
`max_luggage` varchar(100) DEFAULT NULL, | |||
`price` int(11) DEFAULT NULL, | |||
`detour_time` varchar(100) DEFAULT NULL, | |||
`reached_time` varchar(500) DEFAULT NULL, | |||
`is_round_trip` int(10) NOT NULL, | |||
`pickup_flexibility` varchar(500) DEFAULT NULL, | |||
`comments` varchar(500) DEFAULT NULL, | |||
`detour` varchar(500) DEFAULT NULL, | |||
`status` int(11) NOT NULL COMMENT '0 =>InActive , 1 =>Active , 2 =>Delete' | |||
) ENGINE=MyISAM DEFAULT CHARSET=latin1; | |||
-- | |||
-- Dumping data for table `ride` | |||
-- | |||
INSERT INTO `ride` (`id`, `users_id`, `source_lat`, `source_lng`, `destination_lat`, `destination_lng`, `source`, `destination`, `departure_date`, `no_of_seats`, `ride_details`, `car_id`, `max_luggage`, `price`, `detour_time`, `reached_time`, `is_round_trip`, `pickup_flexibility`, `comments`, `detour`, `status`) VALUES | |||
(578, NULL, '-0.023559', '37.906193', '47.6200199', '20.7444859', 'Kenya', 'Tiszafüred, Kismuhi u., 5350 Hungary', '2018-02-24', NULL, NULL, NULL, NULL, NULL, '07:26:56', '18:26:56 ', 0, NULL, NULL, NULL, 0), | |||
(579, NULL, '9.9312328', '76.2673041', '9.5915668', '76.5221531', 'Kochi, Kerala, India', 'Kottayam, Kerala, India', '2018-02-24', NULL, NULL, NULL, NULL, NULL, '08:44:57', '10:33:57 ', 0, NULL, NULL, NULL, 0), | |||
(580, NULL, '22.572646', '88.363895', '10.8505159', '76.2710833', 'Kolkata, West Bengal, India', 'Kerala, India', '2018-02-24', NULL, NULL, NULL, NULL, NULL, '08:47:05', '23:47:05 ', 0, NULL, NULL, NULL, 0), | |||
(581, NULL, '22.572646', '88.363895', '10.8505159', '76.2710833', 'Kolkata, West Bengal, India', 'Kerala, India', '2018-02-24', NULL, NULL, NULL, NULL, NULL, '08:58:27', '23:58:27 ', 0, NULL, NULL, NULL, 0), | |||
(582, NULL, '9.5915668', '76.5221531', '8.5241391', '76.9366376', 'Kottayam, Kerala, India', 'Thiruvananthapuram, Kerala, India', '2018-02-24', NULL, NULL, NULL, NULL, NULL, '12:00:20', '15:40:20 ', 0, NULL, NULL, NULL, 0), | |||
(583, NULL, '9.5915668', '76.5221531', '8.5241391', '76.9366376', 'Kottayam, Kerala, India', 'Thiruvananthapuram, Kerala, India', '2018-02-24', NULL, NULL, NULL, NULL, NULL, '12:21:52', '16:01:52 ', 0, NULL, NULL, NULL, 0), | |||
(584, NULL, '15.3172775', '75.7138884', '22.572646', '88.363895', 'Karnataka, India', 'Kolkata, West Bengal, India', '2018-02-24', NULL, NULL, NULL, NULL, NULL, '12:25:35', '23:25:35 ', 0, NULL, NULL, NULL, 0), | |||
(585, NULL, '15.3172775', '75.7138884', '22.572646', '88.363895', 'Karnataka, India', 'Kolkata, West Bengal, India', '2018-02-24', NULL, NULL, NULL, NULL, NULL, '12:27:07', '23:27:07 ', 0, NULL, NULL, NULL, 0), | |||
(586, NULL, '9.9312328', '76.2673041', '8.5241391', '76.9366376', 'Kochi, Kerala, India', 'Thiruvananthapuram, Kerala, India', '2018-02-24', NULL, NULL, NULL, NULL, NULL, '12:30:09', '17:35:09 ', 0, NULL, NULL, NULL, 0), | |||
(587, NULL, '9.5915668', '76.5221531', '8.5241391', '76.9366376', 'Kottayam, Kerala, India', 'Thiruvananthapuram, Kerala, India', '2018-02-24', NULL, NULL, NULL, NULL, NULL, '12:31:45', '16:11:45 ', 0, NULL, NULL, NULL, 0), | |||
(588, NULL, '9.5915668', '76.5221531', '8.5241391', '76.9366376', 'Kottayam, Kerala, India', 'Thiruvananthapuram, Kerala, India', '2018-02-24', NULL, NULL, NULL, NULL, NULL, '12:36:11', '16:16:11 ', 0, NULL, NULL, NULL, 0), | |||
(589, NULL, '9.5915668', '76.5221531', '8.5241391', '76.9366376', 'Kottayam, Kerala, India', 'Thiruvananthapuram, Kerala, India', '2018-02-24', NULL, NULL, NULL, NULL, NULL, '12:40:20', '16:20:20 ', 0, NULL, NULL, NULL, 0), | |||
(590, NULL, '9.5915668', '76.5221531', '8.5241391', '76.9366376', 'Kottayam, Kerala, India', 'Thiruvananthapuram, Kerala, India', '2018-02-24', NULL, NULL, NULL, NULL, NULL, '12:44:59', '16:24:59 ', 0, NULL, NULL, NULL, 0), | |||
(591, NULL, '9.5915668', '76.5221531', '8.5241391', '76.9366376', 'Kottayam, Kerala, India', 'Thiruvananthapuram, Kerala, India', '2018-02-27', NULL, NULL, NULL, NULL, NULL, '04:11:51', '07:51:51 ', 0, NULL, NULL, NULL, 0), | |||
(592, NULL, '9.5915668', '76.5221531', '8.5241391', '76.9366376', 'Kottayam, Kerala, India', 'Thiruvananthapuram, Kerala, India', '2018-02-27', NULL, NULL, NULL, NULL, NULL, '04:23:45', '08:03:45 ', 0, NULL, NULL, NULL, 0), | |||
(593, NULL, '9.5915668', '76.5221531', '8.5241391', '76.9366376', 'Kottayam, Kerala, India', 'Thiruvananthapuram, Kerala, India', '2018-02-27', NULL, NULL, NULL, NULL, NULL, '04:00:00', '07:40:00 ', 0, NULL, NULL, NULL, 0), | |||
(594, 351, '9.5915668', '76.5221531', '8.5241391', '76.9366376', 'Kottayam, Kerala, India', 'Thiruvananthapuram, Kerala, India', '2018-02-28', 1, NULL, 177, 'Small', 50, '04:00:00', '07:40:00 ', 0, 'Right on time', '', '15 Minutes Detour max.', 0), | |||
(595, NULL, '11.1315499', '76.6845832', '12.9830269', '80.2594001', 'Kottathara, Kerala 678581, India', 'Thiruvanmiyur, Chennai, Tamil Nadu, India', '2018-12-27', NULL, NULL, NULL, NULL, NULL, '06:42:51', '16:10:51 ', 0, NULL, NULL, NULL, 0), | |||
(596, NULL, '9.9312328', '76.2673041', '9.9816358', '76.2998842', 'Kochi, Kerala, India', 'Ernakulam, Kerala, India', '2018-02-27', NULL, NULL, NULL, NULL, NULL, '01:00:00', '01:25:00 ', 0, NULL, NULL, NULL, 0), | |||
(597, NULL, '9.9312328', '76.2673041', '8.5241391', '76.9366376', 'Kochi, Kerala, India', 'Thiruvananthapuram, Kerala, India', '2018-02-27', NULL, NULL, NULL, NULL, NULL, '01:00:00', '06:05:00 ', 0, NULL, NULL, NULL, 0), | |||
(598, NULL, '9.9312328', '76.2673041', '8.5241391', '76.9366376', 'Kochi, Kerala, India', 'Thiruvananthapuram, Kerala, India', '2018-02-27', NULL, NULL, NULL, NULL, NULL, '01:00:00', '06:05:00 ', 0, NULL, NULL, NULL, 0), | |||
(599, NULL, '9.5915668', '76.5221531', '8.5241391', '76.9366376', 'Kottayam, Kerala, India', 'Thiruvananthapuram, Kerala, India', '2018-02-27', NULL, NULL, NULL, NULL, NULL, '01:00:00', '04:40:00 ', 0, NULL, NULL, NULL, 0), | |||
(600, NULL, '9.5915668', '76.5221531', '8.5241391', '76.9366376', 'Kottayam, Kerala, India', 'Thiruvananthapuram, Kerala, India', '2018-02-27', NULL, NULL, NULL, NULL, NULL, '12:14:31', '15:54:31 ', 0, NULL, NULL, NULL, 0), | |||
(601, NULL, '9.5915668', '76.5221531', '8.5241391', '76.9366376', 'Kottayam, Kerala, India', 'Thiruvananthapuram, Kerala, India', '2018-02-28', NULL, NULL, NULL, NULL, NULL, '14:02:52', '17:42:52 ', 0, NULL, NULL, NULL, 0), | |||
(602, NULL, '9.0016637', '76.8001776', '8.5241391', '76.9366376', 'Kottarakkara, Kerala, India', 'Thiruvananthapuram, Kerala, India', '2018-05-28', NULL, NULL, NULL, NULL, NULL, '14:57:38', '16:35:38 ', 0, NULL, NULL, NULL, 0), | |||
(603, NULL, '9.9312328', '76.2673041', '8.5241391', '76.9366376', 'Kochi, Kerala, India', 'Thiruvananthapuram, Kerala, India', '2018-02-28', NULL, NULL, NULL, NULL, NULL, '15:10:16', '05:30:00 ', 0, NULL, NULL, NULL, 0), | |||
(604, NULL, '9.5915668', '76.5221531', '8.5241391', '76.9366376', 'Kottayam, Kerala, India', 'Thiruvananthapuram, Kerala, India', '2018-12-28', NULL, NULL, NULL, NULL, NULL, '15:11:45', '18:51:45 ', 0, NULL, NULL, NULL, 0), | |||
(605, 356, '', '', '', '', 'Kiel, Germany', 'Hamburg, Germany', '2018-03-01', 1, NULL, 180, 'Small', 50, '18:26:22 ', '19:50:22 ', 0, '5 minutes after right time', 'hi', '15 Minutes Detour max.', 0), | |||
(606, 356, '', '', '', '', 'Kiel, Germany', 'Hamburg, Germany', '2018-10-06', 0, NULL, 180, 'Medium', 50, '15:10:12 ', '16:32:12 ', 0, '5 minutes before right time', 'Ihuvyv6yvyvyvoo', '15 Minutes Detour max.', 0), | |||
(608, 356, '', '', '', '', 'test', 'test', '2018-07-20', 2, NULL, 180, 'Medium', 2, '00:04:00 ', '05:30:00 ', 0, 'Right on time', 'asdada\r\n', '15 Minutes Detour max.', 0), | |||
(607, NULL, '22.572646', '88.363895', '8.5241391', '76.9366376', 'Kolkata, West Bengal, India', 'Thiruvananthapuram, Kerala, India', '2018-03-16', NULL, NULL, NULL, NULL, NULL, '12:31:19', '05:30:00 ', 0, NULL, NULL, NULL, 0), | |||
(609, NULL, '9.9312328', '76.2673041', '11.2587531', '75.78041', 'Kochi, Kerala, India', 'Kozhikode, Kerala, India', '2018-09-29', NULL, NULL, NULL, NULL, NULL, '07:00:00', '05:30:00 ', 0, NULL, NULL, NULL, 0), | |||
(610, 400, '9.9312328', '76.2673041', '11.2587531', '75.78041', 'Kochi, Kerala, India', 'Kozhikode, Kerala, India', '2018-09-29', 2, NULL, 182, 'Small', NULL, '09:00:00', '14:17:00 ', 0, 'Right on time', '', '15 Minutes Detour max.', 0), | |||
(611, 400, '9.9312328', '76.2673041', '11.2626228', '75.7673095', 'Kochi, Kerala, India', 'Kozhikode Beach, Kozhikode, Kerala', '2018-09-30', 3, NULL, 182, 'Small', NULL, '05:00:00', '10:19:00 ', 0, 'Right on time', '', '15 Minutes Detour max.', 0), | |||
(612, 400, '9.9312328', '76.2673041', '9.9816358', '76.2998842', 'Kochi, Kerala, India', 'Ernakulam, Kerala, India', '2018-10-01', 3, NULL, 182, 'Small', NULL, '01:00:00', '01:25:00 ', 0, 'Right on time', '', '15 Minutes Detour max.', 0), | |||
(613, 400, '10.0158605', '76.3418666', '9.9312328', '76.2673041', 'Kakkanad, Kerala, India', 'Kochi, Kerala, India', '2018-10-05', 3, NULL, 182, 'Small', NULL, '06:00:00', '05:30:00 ', 0, 'Right on time', '', '15 Minutes Detour max.', 0), | |||
(614, 401, '14.716677', '-17.4676861', '14.1652083', '-16.0757749', 'Dakar, Sénégal', 'Kaolack, Sénégal', '2018-10-04', 4, NULL, 183, 'Small', NULL, '20:00:00', '05:30:00 ', 0, 'Right on time', '24 départ ', '15 Minutes Detour max.', 0), | |||
(615, 400, '17.385044', '78.486671', '49.0635829', '1.8167996', 'Hyderabad, Telangana, India', '9 Chemin de la Mare aux Pois, 78440 Lainville-en-Vexin, France', '2018-10-11', 1, NULL, 182, 'Small', NULL, '02:00:00', '05:30:00 ', 1, 'Right on time', '', '15 Minutes Detour max.', 0), | |||
(616, 400, '49.0635829', '1.8167996', '17.385044', '78.486671', '9 Chemin de la Mare aux Pois, 78440 Lainville-en-Vexin, France', 'Hyderabad, Telangana, India', '2018-10-11', 1, NULL, 182, 'Small', NULL, '00:04:00', '05:30:00 ', 1, 'Right on time', '', '15 Minutes Detour max.', 0), | |||
(617, NULL, '10.0158605', '76.3418666', '10.1075702', '76.345662', 'Kakkanad, Kerala, India', 'Aluva, Kerala, India', '2018-10-12', NULL, NULL, NULL, NULL, NULL, '07:00:00', '05:30:00 ', 0, NULL, NULL, NULL, 0), | |||
(618, NULL, '10.0158605', '76.3418666', '10.1075702', '76.345662', 'Kakkanad, Kerala, India', 'Aluva, Kerala, India', '2018-10-12', NULL, NULL, NULL, NULL, NULL, '07:00:00', '05:30:00 ', 0, NULL, NULL, NULL, 0), | |||
(619, 351, '10.5276416', '76.2144349', '11.2587531', '75.78041', 'Thrissur, Kerala, India', 'Kozhikode, Kerala, India', '2018-10-12', 1, NULL, 177, 'Small', NULL, '06:00:00', '09:12:00 ', 0, 'Right on time', '', '15 Minutes Detour max.', 0), | |||
(620, NULL, '10.5276416', '76.2144349', '11.2587531', '75.78041', 'Thrissur, Kerala, India', 'Kozhikode, Kerala, India', '2018-10-12', NULL, NULL, NULL, NULL, NULL, '06:00:00', '09:12:00 ', 0, NULL, NULL, NULL, 0), | |||
(621, NULL, '10.0236761', '76.3116235', '9.9312328', '76.2673041', 'Edappally, Kochi, Kerala, India', 'Kochi, Kerala, India', '2018-10-12', NULL, NULL, NULL, NULL, NULL, '02:04:00', '02:41:00 ', 0, NULL, NULL, NULL, 0), | |||
(622, 351, '10.0236761', '76.3116235', '9.9312328', '76.2673041', 'Edappally, Kochi, Kerala, India', 'Kochi, Kerala, India', '2018-10-14', 1, NULL, 177, 'Small', NULL, '02:04:00', '02:41:00 ', 0, 'Right on time', '', '15 Minutes Detour max.', 0); | |||
-- -------------------------------------------------------- | |||
-- | |||
-- Table structure for table `ride_alert` | |||
-- | |||
CREATE TABLE `ride_alert` ( | |||
`id` int(11) NOT NULL, | |||
`user_id` int(11) NOT NULL, | |||
`source` varchar(500) DEFAULT NULL, | |||
`destination` varchar(500) DEFAULT NULL, | |||
`departure_date` varchar(500) DEFAULT NULL, | |||
`departure_time` varchar(500) DEFAULT NULL, | |||
`before_time` varchar(100) DEFAULT NULL, | |||
`ride_alert` int(11) NOT NULL DEFAULT '0' COMMENT '0-no alert,1-alert needed' | |||
) ENGINE=MyISAM DEFAULT CHARSET=latin1; | |||
-- -------------------------------------------------------- | |||
-- | |||
-- Table structure for table `settings` | |||
-- | |||
CREATE TABLE `settings` ( | |||
`id` int(10) NOT NULL, | |||
`title` varchar(100) DEFAULT NULL, | |||
`logo` varchar(100) DEFAULT NULL, | |||
`smtp_host` varchar(100) DEFAULT NULL, | |||
`smtp_username` varchar(20) DEFAULT NULL, | |||
`smtp_password` varchar(20) DEFAULT NULL, | |||
`sender_id` int(100) DEFAULT NULL, | |||
`sms_username` varchar(20) DEFAULT NULL, | |||
`sms_password` varchar(50) DEFAULT NULL, | |||
`admin_email` varchar(20) DEFAULT NULL, | |||
`kmcharge` int(11) DEFAULT NULL, | |||
`admin_charge` int(11) NOT NULL | |||
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |||
-- | |||
-- Dumping data for table `settings` | |||
-- | |||
INSERT INTO `settings` (`id`, `title`, `logo`, `smtp_host`, `smtp_username`, `smtp_password`, `sender_id`, `sms_username`, `sms_password`, `admin_email`, `kmcharge`, `admin_charge`) VALUES | |||
(1, 'Joyride', '', 'mail.techware.in', '[email protected]', 'Golden_123', 101, 'test', '111', '[email protected]', 5, 30); | |||
-- -------------------------------------------------------- | |||
-- | |||
-- Table structure for table `settings1` | |||
-- | |||
CREATE TABLE `settings1` ( | |||
`id` int(10) NOT NULL, | |||
`title` varchar(100) DEFAULT NULL, | |||
`logo` varchar(100) DEFAULT NULL, | |||
`smtp_host` varchar(100) DEFAULT NULL, | |||
`smtp_username` varchar(20) DEFAULT NULL, | |||
`smtp_password` varchar(20) DEFAULT NULL, | |||
`sender_id` int(100) DEFAULT NULL, | |||
`sms_username` varchar(20) DEFAULT NULL, | |||
`sms_password` varchar(50) DEFAULT NULL, | |||
`admin_email` varchar(20) DEFAULT NULL, | |||
`kmcharge` int(11) DEFAULT NULL, | |||
`admin_charge` int(11) NOT NULL | |||
) ENGINE=InnoDB DEFAULT CHARSET=latin1; | |||
-- -------------------------------------------------------- | |||
-- | |||
-- Table structure for table `users` | |||
-- | |||
CREATE TABLE `users` ( | |||
`id` int(11) NOT NULL, | |||
`first_name` varchar(50) DEFAULT NULL, | |||
`last_name` varchar(50) DEFAULT NULL, | |||
`username` varchar(50) DEFAULT NULL, | |||
`password` varchar(100) DEFAULT NULL, | |||
`profile_photo` varchar(250) DEFAULT NULL, | |||
`email` varchar(50) DEFAULT NULL, | |||
`phone_no` varchar(50) DEFAULT NULL, | |||
`region` varchar(50) DEFAULT NULL, | |||
`gender` varchar(50) DEFAULT NULL, | |||
`date_of_birth` varchar(50) DEFAULT NULL, | |||
`join_date` varchar(100) DEFAULT NULL, | |||
`crnt_lattitude` varchar(11) DEFAULT NULL, | |||
`crnt_longitude` varchar(11) DEFAULT NULL, | |||
`req_id` varchar(255) DEFAULT NULL, | |||
`id_is_verified` int(10) DEFAULT '0' COMMENT '0=> Not Verified , 1 =>Verified', | |||
`phone_is_verified` int(10) DEFAULT '0' COMMENT '0=> Not Verified , 1 =>Verified', | |||
`email_is_verified` int(10) DEFAULT '0' COMMENT '0=> Not Verified , 1 =>Verified', | |||
`biography` text, | |||
`govt_id_path` varchar(50) DEFAULT NULL, | |||
`player_id` varchar(500) DEFAULT NULL, | |||
`fb_id` varchar(255) DEFAULT NULL, | |||
`status` int(10) NOT NULL DEFAULT '1' COMMENT '0 =>InActive , 1 =>Active , 2 =>Delete', | |||
`google_id` varchar(255) DEFAULT NULL | |||
) ENGINE=MyISAM DEFAULT CHARSET=latin1; | |||
-- | |||
-- Dumping data for table `users` | |||
-- | |||
INSERT INTO `users` (`id`, `first_name`, `last_name`, `username`, `password`, `profile_photo`, `email`, `phone_no`, `region`, `gender`, `date_of_birth`, `join_date`, `crnt_lattitude`, `crnt_longitude`, `req_id`, `id_is_verified`, `phone_is_verified`, `email_is_verified`, `biography`, `govt_id_path`, `player_id`, `fb_id`, `status`, `google_id`) VALUES | |||
(351, 'tinu', 'anna', 'demouser', 'e10adc3949ba59abbe56e057f20f883e', 'http://techlabz.in/joyride_final/./assets/uploads/profile_pic/1456923017tmp_IMG-20180225-WA00022052054661.jpg', '[email protected]', '+919605211853', '', NULL, NULL, '2018-02-22', NULL, NULL, '91b4af04d9ed263ad90facdaa8d6d433', 0, 0, 0, NULL, NULL, 'cc60853b-4665-4883-90d2-794219781927', '', 1, NULL), | |||
(352, 'anju', 'Joseph', 'anjumol', 'e10adc3949ba59abbe56e057f20f883e', NULL, '[email protected]', '+919809876754', '', NULL, NULL, '2018-02-26', NULL, NULL, '4e2652e2728aad55ddb60fd5a9118c2c', 0, 0, 0, NULL, NULL, '70150385-293c-42d7-9b76-0c2355ee4ee0', '', 1, NULL), | |||
(353, 'anjana', 'ravi', 'anjanaravi', 'c20ad4d76fe97759aa27a0c99bff6710', NULL, '[email protected]', '+919087564', '', NULL, NULL, '2018-02-26', NULL, NULL, '04335b6e7a36da4c48450ed283fe9369', 0, 0, 0, NULL, NULL, NULL, '', 1, NULL), | |||
(354, 'manu', 'mathew', 'manumathew', 'e10adc3949ba59abbe56e057f20f883e', NULL, '[email protected]', '+919867093421', '', NULL, NULL, '2018-02-27', NULL, NULL, '5776017a8099c2445acef6347081a2be', 0, 0, 0, NULL, NULL, NULL, '', 1, NULL), | |||
(355, 'Mikku', 'K', 'Mikkumon', 'e10adc3949ba59abbe56e057f20f883e', NULL, '[email protected]', '+919562953576', '', NULL, NULL, '2018-02-27', NULL, NULL, '6834cc96d4b0452e2ae0443e865c25c3', 0, 0, 0, NULL, NULL, '70150385-293c-42d7-9b76-0c2355ee4ee0', '', 1, NULL), | |||
(356, 'test', 'test', 'test', '330df82fa6ad1001cb268166c0a86ec8', NULL, '[email protected]', '+931231231235', '', 'male', '1998-09-11', '2018-02-28', NULL, NULL, '5fdb515c6b7d61e4dca674f9c0d40238', 0, 0, 0, NULL, NULL, '836ae5ab-8d3d-4807-a460-0266862f5353', '', 1, NULL), | |||
(357, 'asdf', 'asdfad', 'test1', '330df82fa6ad1001cb268166c0a86ec8', NULL, '[email protected]', '+91312313132123', '', NULL, NULL, '2018-03-02', NULL, NULL, '7fe1ce6cd0dbc9ff843b68d562ecb017', 0, 0, 0, NULL, NULL, '2608e0d5-2937-4fe1-93aa-3dcf433b5b22', '', 1, NULL), | |||
(358, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, '2018-06-04', NULL, NULL, '', 0, 0, 0, NULL, NULL, NULL, NULL, 1, NULL), | |||
(359, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, '2018-06-05', NULL, NULL, '', 0, 0, 0, NULL, NULL, NULL, NULL, 1, NULL), | |||
(360, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, '2018-06-05', NULL, NULL, '', 0, 0, 0, NULL, NULL, NULL, NULL, 1, NULL), | |||
(361, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '', NULL, NULL, '2018-06-05', NULL, NULL, '', 0, 0, 0, NULL, NULL, NULL, NULL, 1, NULL), | |||
(362, 'Anju Msoman', '', 'Anju Msoman', NULL, 'https://platform-lookaside.fbsbx.com/platform/profilepic/?asid=1165117533627883&height=50&width=50&ext=1528432042&hash=AeQrfKtZTjyo2wCD', '[email protected]', NULL, '', NULL, NULL, '2018-06-05', NULL, NULL, '', 0, 0, 0, NULL, NULL, NULL, NULL, 1, NULL), | |||
(363, 'Anju Msoman', '', 'Anju Msoman', NULL, 'https://platform-lookaside.fbsbx.com/platform/profilepic/?asid=1165117533627883&height=50&width=50&ext=1528432042&hash=AeQrfKtZTjyo2wCD', '[email protected]', NULL, '', NULL, NULL, '2018-06-05', NULL, NULL, '', 0, 0, 0, NULL, NULL, NULL, NULL, 1, NULL), | |||
(364, 'Anju Msoman', '', 'Anju Msoman', NULL, 'https://platform-lookaside.fbsbx.com/platform/profilepic/?asid=1165117533627883&height=50&width=50&ext=1528433039&hash=AeSS6YX5pXdRU1tU', '[email protected]', NULL, '', NULL, NULL, '2018-06-05', NULL, NULL, '', 0, 0, 0, NULL, NULL, NULL, NULL, 1, NULL), | |||
(365, 'Anju Msoman', '', 'Anju Msoman', NULL, 'https://platform-lookaside.fbsbx.com/platform/profilepic/?asid=1165117533627883&height=50&width=50&ext=1528433597&hash=AeTx89E9nZZQ6VLT', '[email protected]', NULL, '', NULL, NULL, '2018-06-05', NULL, NULL, '', 0, 0, 0, NULL, NULL, '18544ddc-5582-4c32-8ade-f52441d2c4eb', NULL, 1, NULL), | |||
(366, 'Anju Msoman', '', 'Anju Msoman', NULL, 'https://platform-lookaside.fbsbx.com/platform/profilepic/?asid=1165117533627883&height=50&width=50&ext=1528434178&hash=AeSpN8DNCvkfnuT8', '[email protected]', NULL, '', NULL, NULL, '2018-06-05', NULL, NULL, '', 0, 0, 0, NULL, NULL, '18544ddc-5582-4c32-8ade-f52441d2c4eb', NULL, 1, NULL), | |||
(367, 'Anju Msoman', '', 'Anju Msoman', NULL, 'https://platform-lookaside.fbsbx.com/platform/profilepic/?asid=1180802005392769&height=50&width=50&ext=1529908459&hash=AeRv0wEg2aXJ9Fpn', '[email protected]', NULL, NULL, NULL, NULL, '2018-06-22', NULL, NULL, NULL, 0, 0, 0, NULL, NULL, '18544ddc-5582-4c32-8ade-f52441d2c4eb', NULL, 1, NULL), | |||
(368, 'Anju Msoman', '', 'Anju Msoman', NULL, 'https://platform-lookaside.fbsbx.com/platform/profilepic/?asid=1180802005392769&height=50&width=50&ext=1529908539&hash=AeQx4yc97MWKCgMA', '[email protected]', NULL, NULL, NULL, NULL, '2018-06-22', NULL, NULL, NULL, 0, 0, 0, NULL, NULL, '18544ddc-5582-4c32-8ade-f52441d2c4eb', NULL, 1, NULL), | |||
(369, 'Ann', 'Maris', 'Anjums', 'fe9bf36d170815496f6b315f791866a6', NULL, '[email protected]', '+919745686914', NULL, NULL, NULL, '2018-06-22', NULL, NULL, NULL, 0, 0, 0, NULL, NULL, NULL, NULL, 1, NULL), | |||
(370, 'Anjums', 'Ff', 'Reeba', 'e10adc3949ba59abbe56e057f20f883e', NULL, '[email protected]', '+919745686923', NULL, NULL, NULL, '2018-06-22', NULL, NULL, NULL, 0, 0, 0, NULL, NULL, NULL, NULL, 1, NULL), | |||
(371, 'Reeba', 'Neeba', 'Neeba', 'e10adc3949ba59abbe56e057f20f883e', NULL, '[email protected]', '+919745686911', NULL, NULL, NULL, '2018-06-22', NULL, NULL, NULL, 0, 0, 0, NULL, NULL, NULL, NULL, 1, NULL), | |||
(372, 'Jaise ', 'Reeba', 'Jaise', 'e10adc3949ba59abbe56e057f20f883e', NULL, '[email protected]', '+919142090800', NULL, NULL, NULL, '2018-06-22', NULL, NULL, '2af70527279690a6292ebb628edf2eda', 0, 0, 0, NULL, NULL, NULL, NULL, 1, NULL), | |||
(373, 'Anju', '', 'Mss', 'fe9bf36d170815496f6b315f791866a6', '', '[email protected]', NULL, NULL, NULL, NULL, '2018-06-22', NULL, NULL, NULL, 0, 0, 0, NULL, NULL, NULL, NULL, 1, NULL), | |||
(374, 'Anju', '', 'Mss', 'fe9bf36d170815496f6b315f791866a6', '', '[email protected]', NULL, NULL, NULL, NULL, '2018-06-22', NULL, NULL, NULL, 0, 0, 0, NULL, NULL, NULL, NULL, 1, NULL), | |||
(375, 'Anju', '', 'Mss', 'fe9bf36d170815496f6b315f791866a6', '', '[email protected]', NULL, NULL, NULL, NULL, '2018-06-22', NULL, NULL, NULL, 0, 0, 0, NULL, NULL, NULL, NULL, 1, NULL), | |||
(376, 'Anju', '', 'Mss', 'fe9bf36d170815496f6b315f791866a6', '', '[email protected]', NULL, NULL, NULL, NULL, '2018-06-22', NULL, NULL, NULL, 0, 0, 0, NULL, NULL, NULL, NULL, 1, NULL), | |||
(377, 'Anju', '', 'Mss', 'fe9bf36d170815496f6b315f791866a6', '', '[email protected]', NULL, NULL, NULL, NULL, '2018-06-22', NULL, NULL, NULL, 0, 0, 0, NULL, NULL, NULL, NULL, 1, NULL), | |||
(378, 'Anju', '', 'Mss', 'fe9bf36d170815496f6b315f791866a6', '', '[email protected]', NULL, NULL, NULL, NULL, '2018-06-22', NULL, NULL, NULL, 0, 0, 0, NULL, NULL, NULL, NULL, 1, NULL), | |||
(379, 'Anju', '', 'Mss', 'fe9bf36d170815496f6b315f791866a6', '', '[email protected]', NULL, NULL, NULL, NULL, '2018-06-22', NULL, NULL, NULL, 0, 0, 0, NULL, NULL, NULL, NULL, 1, NULL), | |||
(380, 'rila', 'kely', 'rilakely', 'a1732cf5ae78f7fdefd2b70bf7d2fd6c', NULL, '[email protected]', '+330605579819', NULL, 'male', '1990-01-1', '2018-06-23', NULL, NULL, '8cb0eb379ebcf00c7e63770a5ea72ccd', 0, 0, 0, NULL, NULL, 'bf3b1bf4-fb34-4065-85af-1183fd32521e', NULL, 1, NULL), | |||
(381, 'ny', 'hasina', 'nyhasina', '47097a4236fab2450fd95105be592d84', NULL, '[email protected]', '+2540123456789', NULL, NULL, NULL, '2018-06-23', NULL, NULL, '4bb8ee8cb3328bddd2c2127ee30aa0ea', 0, 0, 0, NULL, NULL, 'bf3b1bf4-fb34-4065-85af-1183fd32521e', NULL, 1, NULL), | |||
(382, 'lol', 'lol', 'lollol', 'a9aedc6c39f654e55275ad8e65e316b3', NULL, '[email protected]', '+2540898989899', NULL, NULL, NULL, '2018-06-23', NULL, NULL, '052f953f4e16fa64c763753ef25922b7', 0, 0, 0, NULL, NULL, NULL, NULL, 1, NULL), | |||
(383, 'fName', 'lName', 'username', 'dc647eb65e6711e155375218212b3964', NULL, '[email protected]', '+2540123456799', NULL, NULL, NULL, '2018-06-28', NULL, NULL, 'ec54cd32ddd9f3088326c07a46768c76', 0, 0, 0, NULL, NULL, 'bf3b1bf4-fb34-4065-85af-1183fd32521e', NULL, 1, NULL), | |||
(384, 'Anju', 'Anju', 'Anjuanju', '25d55ad283aa400af464c76d713c07ad', NULL, '[email protected]', '+918989898989', NULL, NULL, NULL, '2018-07-04', NULL, NULL, '846301536ba59d3c38390d286018829a', 0, 0, 0, NULL, NULL, NULL, NULL, 1, NULL), | |||
(385, 'Anju', 'Anju', 'Anjuanjuu', '25d55ad283aa400af464c76d713c07ad', NULL, '[email protected]', '+918989898985', NULL, NULL, NULL, '2018-07-04', NULL, NULL, '8b58443bceace210d36eda963e3852f2', 0, 0, 0, NULL, NULL, NULL, NULL, 1, NULL), | |||
(386, 'Anjums', 'Anjums', 'Anjumsms', 'e10adc3949ba59abbe56e057f20f883e', NULL, '[email protected]', '+919745686915', NULL, NULL, NULL, '2018-07-04', NULL, NULL, '6b9e3ff348cb8d68ebd4d78c4f13431b', 0, 0, 0, NULL, NULL, NULL, NULL, 2, NULL), | |||
(387, 'Susy', 'Susy', 'Demousers', 'e10adc3949ba59abbe56e057f20f883e', NULL, '[email protected]', '+919745656561', NULL, NULL, NULL, '2018-07-04', NULL, NULL, 'a18eb496a96a0d7600030d4afd1c0f54', 0, 0, 0, NULL, NULL, NULL, NULL, 1, NULL), | |||
(388, 'Adarsh', 'Adarsh', 'Adarsh', 'e10adc3949ba59abbe56e057f20f883e', NULL, '[email protected]', '+919878787878', NULL, NULL, NULL, '2018-07-04', NULL, NULL, '', 0, 0, 1, NULL, NULL, NULL, NULL, 1, NULL), | |||
(389, 'Anjutest', 'Anju', 'Anjutest', 'e10adc3949ba59abbe56e057f20f883e', NULL, '[email protected]', '+919696969696', NULL, NULL, NULL, '2018-07-04', NULL, NULL, 'f9a8e7d91ea0d8853a9178d9d1be0faf', 0, 0, 0, NULL, NULL, NULL, NULL, 1, NULL), | |||
(390, 'Retest', 'Retest', 'Retest', 'e10adc3949ba59abbe56e057f20f883e', NULL, '[email protected]', '+919367676767', NULL, NULL, NULL, '2018-07-13', NULL, NULL, '', 0, 0, 1, NULL, NULL, NULL, NULL, 1, NULL), | |||
(391, 'Voil Centre', '', 'Factory', NULL, '', '[email protected]', NULL, NULL, NULL, NULL, '2018-07-17', NULL, NULL, NULL, 0, 0, 0, NULL, NULL, NULL, NULL, 1, NULL), | |||
(392, 'Rachel', 'Green', 'rachelgreen', 'e10adc3949ba59abbe56e057f20f883e', NULL, '[email protected]', '+919567841904', NULL, NULL, NULL, '2018-07-18', NULL, NULL, '', 0, 0, 1, NULL, NULL, NULL, NULL, 1, NULL), | |||
(393, 'Susanna', '', 'Philip', NULL, '', '[email protected]', NULL, NULL, NULL, NULL, '2018-07-19', NULL, NULL, NULL, 0, 0, 0, NULL, NULL, NULL, NULL, 1, NULL), | |||
(394, 'Alan', 'Thomas', 'Alan', '4a5e2c049594eebd00075b3a7e15995f', NULL, '[email protected]', '+919562523309', NULL, NULL, NULL, '2018-07-19', NULL, NULL, '', 0, 0, 1, NULL, NULL, NULL, NULL, 1, NULL), | |||
(395, 'Mohamed', 'Ammar', 'Ahamwahef', 'd3996fde80a699c329f98eba318f52d0', NULL, '[email protected]', '+2001067352232', NULL, NULL, NULL, '2018-07-26', NULL, NULL, '', 0, 0, 1, NULL, NULL, NULL, NULL, 1, NULL), | |||
(396, 'Ammar', '', 'Ahmed', NULL, '', '[email protected]', NULL, NULL, NULL, NULL, '2018-07-26', NULL, NULL, NULL, 0, 0, 0, NULL, NULL, NULL, NULL, 1, NULL), | |||
(397, 'Nirav', '', 'Monpara', NULL, '', '[email protected]', NULL, NULL, NULL, NULL, '2018-07-26', NULL, NULL, NULL, 0, 0, 0, NULL, NULL, NULL, NULL, 1, NULL), | |||
(398, 'Rahul', '', 'Vaidya', NULL, '', '[email protected]', NULL, NULL, NULL, NULL, '2018-07-26', NULL, NULL, NULL, 0, 0, 0, NULL, NULL, NULL, NULL, 1, NULL), | |||
(399, 'Nirav', '', 'Monpara', NULL, '', '[email protected]', NULL, NULL, NULL, NULL, '2018-07-26', NULL, NULL, NULL, 0, 0, 0, NULL, NULL, NULL, NULL, 1, NULL), | |||
(400, 'athira', 'k', 'athiraks', '25f9e794323b453885f5181f1b624d0b', NULL, '[email protected]', '+919961531199', NULL, NULL, NULL, '2018-09-28', NULL, NULL, 'cb6cf8f7fc3858aa11087b4c0085d357', 0, 0, 0, NULL, NULL, 'cc60853b-4665-4883-90d2-794219781927', NULL, 1, NULL), | |||
(401, 'Paul', 'Diouf ', 'paul', 'fc8ca2708fd76bd01ab48ec959a31b0d', 'http://techlabz.in/tukkibi/./assets/uploads/profile_pic/1989193435joyride_1538556524.jpg', '[email protected]', '+254333334455', NULL, NULL, NULL, '2018-10-03', NULL, NULL, '', 0, 0, 1, NULL, NULL, '5ba88797-723b-426a-b1dd-9fd694f0a3a1', NULL, 1, NULL); | |||
-- -------------------------------------------------------- | |||
-- | |||
-- Table structure for table `user_details` | |||
-- | |||
CREATE TABLE `user_details` ( | |||
`id` int(11) NOT NULL, | |||
`user_id` int(11) DEFAULT NULL, | |||
`chattiness` int(11) DEFAULT '1' COMMENT '0=> Not Allow, 1 =>Allow ,2 =>Sometimes', | |||
`smoking` int(11) DEFAULT '1' COMMENT '0=> Not Allow, 1 =>Allow ,2 =>Sometimes', | |||
`music` int(11) DEFAULT '1' COMMENT '0=> Not Allow, 1 =>Allow ,2 =>Sometimes', | |||
`pets` int(11) DEFAULT '1' COMMENT '0=> Not Allow, 1 =>Allow ,2 =>Sometimes', | |||
`push_notification` int(11) DEFAULT '0' COMMENT '0=> Not Allow, 1 =>Allow', | |||
`ride_offer _request` int(11) DEFAULT '0' COMMENT '0=> Not Allow, 1 =>Allow', | |||
`ride_offer_response` int(11) DEFAULT '0' COMMENT '0=> Not Allow, 1 =>Allow', | |||
`new_message` int(11) DEFAULT '0' COMMENT '0=> Not Allow, 1 =>Allow', | |||
`new_rating` int(11) DEFAULT '0' COMMENT '0=> Not Allow, 1 =>Allow' | |||
) ENGINE=MyISAM DEFAULT CHARSET=latin1; | |||
-- | |||
-- Dumping data for table `user_details` | |||
-- | |||
INSERT INTO `user_details` (`id`, `user_id`, `chattiness`, `smoking`, `music`, `pets`, `push_notification`, `ride_offer _request`, `ride_offer_response`, `new_message`, `new_rating`) VALUES | |||
(381, 351, 1, 1, 1, 1, 0, 0, 0, 0, 0), | |||
(382, 352, 1, 1, 1, 1, 0, 0, 0, 0, 0), | |||
(383, 353, 1, 1, 1, 1, 0, 0, 0, 0, 0), | |||
(384, 354, 1, 1, 1, 1, 0, 0, 0, 0, 0), | |||
(385, 355, 1, 1, 1, 1, 0, 0, 0, 0, 0), | |||
(386, 356, 1, 1, 1, 1, 0, 0, 0, 0, 0), | |||
(387, 357, 1, 1, 1, 1, 0, 0, 0, 0, 0), | |||
(388, 358, 1, 1, 1, 1, 0, 0, 0, 0, 0), | |||
(389, 359, 1, 1, 1, 1, 0, 0, 0, 0, 0), | |||
(390, 360, 1, 1, 1, 1, 0, 0, 0, 0, 0), | |||
(391, 361, 1, 1, 1, 1, 0, 0, 0, 0, 0), | |||
(392, 362, 1, 1, 1, 1, 0, 0, 0, 0, 0), | |||
(393, 363, 1, 1, 1, 1, 0, 0, 0, 0, 0), | |||
(394, 364, 1, 1, 1, 1, 0, 0, 0, 0, 0), | |||
(395, 365, 1, 1, 1, 1, 0, 0, 0, 0, 0), | |||
(396, 366, 1, 1, 1, 1, 0, 0, 0, 0, 0), | |||
(397, 367, 1, 1, 1, 1, 0, 0, 0, 0, 0), | |||
(398, 368, 1, 1, 1, 1, 0, 0, 0, 0, 0), | |||
(399, 369, 1, 1, 1, 1, 0, 0, 0, 0, 0), | |||
(400, 370, 1, 1, 1, 1, 0, 0, 0, 0, 0), | |||
(401, 371, 1, 1, 1, 1, 0, 0, 0, 0, 0), | |||
(402, 372, 1, 1, 1, 1, 0, 0, 0, 0, 0), | |||
(403, 373, 1, 1, 1, 1, 0, 0, 0, 0, 0), | |||
(404, 374, 1, 1, 1, 1, 0, 0, 0, 0, 0), | |||
(405, 375, 1, 1, 1, 1, 0, 0, 0, 0, 0), | |||
(406, 376, 1, 1, 1, 1, 0, 0, 0, 0, 0), | |||
(407, 377, 1, 1, 1, 1, 0, 0, 0, 0, 0), | |||
(408, 378, 1, 1, 1, 1, 0, 0, 0, 0, 0), | |||
(409, 379, 1, 1, 1, 1, 0, 0, 0, 0, 0), | |||
(410, 380, 1, 1, 1, 1, 0, 0, 0, 0, 0), | |||
(411, 381, 1, 1, 1, 1, 0, 0, 0, 0, 0), | |||
(412, 382, 1, 1, 1, 1, 0, 0, 0, 0, 0), | |||
(413, 383, 0, 1, 1, 1, 0, 0, 0, 0, 0), | |||
(414, 384, 1, 1, 1, 1, 0, 0, 0, 0, 0), | |||
(415, 385, 1, 1, 1, 1, 0, 0, 0, 0, 0), | |||
(416, 386, 1, 1, 1, 1, 0, 0, 0, 0, 0), | |||
(417, 387, 1, 1, 1, 1, 0, 0, 0, 0, 0), | |||
(418, 388, 1, 1, 1, 1, 0, 0, 0, 0, 0), | |||
(419, 389, 1, 1, 1, 1, 0, 0, 0, 0, 0), | |||
(420, 390, 1, 1, 1, 1, 0, 0, 0, 0, 0), | |||
(421, 391, 1, 1, 1, 1, 0, 0, 0, 0, 0), | |||
(422, 392, 1, 1, 1, 1, 0, 0, 0, 0, 0), | |||
(423, 393, 1, 1, 1, 1, 0, 0, 0, 0, 0), | |||
(424, 394, 1, 1, 1, 1, 0, 0, 0, 0, 0), | |||
(425, 395, 1, 1, 1, 1, 0, 0, 0, 0, 0), | |||
(426, 396, 1, 1, 1, 1, 0, 0, 0, 0, 0), | |||
(427, 397, 1, 1, 1, 1, 0, 0, 0, 0, 0), | |||
(428, 398, 1, 1, 1, 1, 0, 0, 0, 0, 0), | |||
(429, 399, 1, 1, 1, 1, 0, 0, 0, 0, 0), | |||
(430, 400, 1, 1, 1, 1, 0, 0, 0, 0, 0), | |||
(431, 401, 1, 1, 1, 1, 0, 0, 0, 0, 0); | |||
-- -------------------------------------------------------- | |||
-- | |||
-- Table structure for table `verification` | |||
-- | |||
CREATE TABLE `verification` ( | |||
`id` int(11) NOT NULL, | |||
`user_id` int(11) DEFAULT NULL, | |||
`type` int(11) DEFAULT NULL COMMENT '1=>Goverment_id', | |||
`image` varchar(100) DEFAULT NULL, | |||
`full_name` varchar(50) DEFAULT NULL, | |||
`date_of_birth` varchar(50) DEFAULT NULL, | |||
`number` varchar(50) DEFAULT NULL, | |||
`status` int(11) DEFAULT '0' COMMENT '1=>Approved,2=>Pending, 3=>Rejected,0=>Not Uploaded, 4=>Uploaded' | |||
) ENGINE=MyISAM DEFAULT CHARSET=latin1; | |||
-- | |||
-- Dumping data for table `verification` | |||
-- | |||
INSERT INTO `verification` (`id`, `user_id`, `type`, `image`, `full_name`, `date_of_birth`, `number`, `status`) VALUES | |||
(685, 351, 1, 'http://techlabz.in/joyride_final/./assets/uploads/profile_pic/17542081171519646008301.jpg', 'Tinuanna', '2006-05-4', '12309876', 1), | |||
(686, 55, 0, '', '', '', '', 0), | |||
(687, 352, 1, 'http://techlabz.in/joyride_final/./assets/uploads/profile_pic/9750585061519795021073.jpg', 'Anju', '2004-06-5', '123456', 3), | |||
(688, 353, 0, '', '', '', '', 0), | |||
(689, 354, 0, '', '', '', '', 0), | |||
(690, 355, 1, 'http://techlabz.in/joyride_final/./assets/uploads/profile_pic/17588496781520252723163.jpg', 'Mikku', '2004-06-4', '123457', 4), | |||
(691, 356, 1, 'http://techlabz.in/joyride_final/./assets/uploads/profile_pic/1462863481519994733220.jpg', 'gjfhj', '2002-09-9', 'yjgdghjk', 1), | |||
(692, 357, 1, 'http://techlabz.in/joyride_final//assets/uploads/profile_pic/joyride_1521096200_e_img14.png', 'asssa', '2018-03-07', '345678', 1), | |||
(693, 371, NULL, NULL, NULL, NULL, NULL, 0), | |||
(694, 372, NULL, NULL, NULL, NULL, NULL, 0), | |||
(695, 380, NULL, NULL, NULL, NULL, NULL, 0), | |||
(696, 381, NULL, NULL, NULL, NULL, NULL, 0), | |||
(697, 382, NULL, NULL, NULL, NULL, NULL, 0), | |||
(698, 383, NULL, NULL, NULL, NULL, NULL, 0), | |||
(699, 384, NULL, NULL, NULL, NULL, NULL, 0), | |||
(700, 385, NULL, NULL, NULL, NULL, NULL, 0), | |||
(701, 386, NULL, NULL, NULL, NULL, NULL, 0), | |||
(702, 387, NULL, NULL, NULL, NULL, NULL, 0), | |||
(703, 388, NULL, NULL, NULL, NULL, NULL, 0), | |||
(704, 389, NULL, NULL, NULL, NULL, NULL, 0), | |||
(705, 390, NULL, NULL, NULL, NULL, NULL, 0), | |||
(706, 392, NULL, NULL, NULL, NULL, NULL, 0), | |||
(707, 394, NULL, NULL, NULL, NULL, NULL, 0), | |||
(708, 395, NULL, NULL, NULL, NULL, NULL, 0), | |||
(709, 400, NULL, NULL, NULL, NULL, NULL, 0), | |||
(710, 401, NULL, NULL, NULL, NULL, NULL, 0); | |||
-- | |||
-- Indexes for dumped tables | |||
-- | |||
-- | |||
-- Indexes for table `admin` | |||
-- | |||
ALTER TABLE `admin` | |||
ADD PRIMARY KEY (`id`); | |||
-- | |||
-- Indexes for table `booking` | |||
-- | |||
ALTER TABLE `booking` | |||
ADD PRIMARY KEY (`id`); | |||
-- | |||
-- Indexes for table `booking_approve` | |||
-- | |||
ALTER TABLE `booking_approve` | |||
ADD PRIMARY KEY (`id`); | |||
-- | |||
-- Indexes for table `book_push` | |||
-- | |||
ALTER TABLE `book_push` | |||
ADD PRIMARY KEY (`id`); | |||
-- | |||
-- Indexes for table `car_color` | |||
-- | |||
ALTER TABLE `car_color` | |||
ADD PRIMARY KEY (`id`); | |||
-- | |||
-- Indexes for table `car_details` | |||
-- | |||
ALTER TABLE `car_details` | |||
ADD PRIMARY KEY (`id`); | |||
-- | |||
-- Indexes for table `car_make` | |||
-- | |||
ALTER TABLE `car_make` | |||
ADD PRIMARY KEY (`id`); | |||
-- | |||
-- Indexes for table `car_type` | |||
-- | |||
ALTER TABLE `car_type` | |||
ADD PRIMARY KEY (`id`); | |||
-- | |||
-- Indexes for table `chat` | |||
-- | |||
ALTER TABLE `chat` | |||
ADD PRIMARY KEY (`id`); | |||
-- | |||
-- Indexes for table `cms` | |||
-- | |||
ALTER TABLE `cms` | |||
ADD PRIMARY KEY (`id`); | |||
-- | |||
-- Indexes for table `countries` | |||
-- | |||
ALTER TABLE `countries` | |||
ADD PRIMARY KEY (`id`); | |||
-- | |||
-- Indexes for table `customer` | |||
-- | |||
ALTER TABLE `customer` | |||
ADD PRIMARY KEY (`id`); | |||
-- | |||
-- Indexes for table `dropping_points` | |||
-- | |||
ALTER TABLE `dropping_points` | |||
ADD PRIMARY KEY (`id`); | |||
-- | |||
-- Indexes for table `keys` | |||
-- | |||
ALTER TABLE `keys` | |||
ADD PRIMARY KEY (`id`); | |||
-- | |||
-- Indexes for table `notifications` | |||
-- | |||
ALTER TABLE `notifications` | |||
ADD PRIMARY KEY (`id`); | |||
-- | |||
-- Indexes for table `payment` | |||
-- | |||
ALTER TABLE `payment` | |||
ADD PRIMARY KEY (`id`); | |||
-- | |||
-- Indexes for table `rating` | |||
-- | |||
ALTER TABLE `rating` | |||
ADD PRIMARY KEY (`id`); | |||
-- | |||
-- Indexes for table `report` | |||
-- | |||
ALTER TABLE `report` | |||
ADD PRIMARY KEY (`Id`); | |||
-- | |||
-- Indexes for table `report_ride` | |||
-- | |||
ALTER TABLE `report_ride` | |||
ADD PRIMARY KEY (`id`); | |||
-- | |||
-- Indexes for table `ride` | |||
-- | |||
ALTER TABLE `ride` | |||
ADD PRIMARY KEY (`id`); | |||
-- | |||
-- Indexes for table `ride_alert` | |||
-- | |||
ALTER TABLE `ride_alert` | |||
ADD PRIMARY KEY (`id`); | |||
-- | |||
-- Indexes for table `settings` | |||
-- | |||
ALTER TABLE `settings` | |||
ADD PRIMARY KEY (`id`); | |||
-- | |||
-- Indexes for table `settings1` | |||
-- | |||
ALTER TABLE `settings1` | |||
ADD PRIMARY KEY (`id`); | |||
-- | |||
-- Indexes for table `users` | |||
-- | |||
ALTER TABLE `users` | |||
ADD PRIMARY KEY (`id`); | |||
-- | |||
-- Indexes for table `user_details` | |||
-- | |||
ALTER TABLE `user_details` | |||
ADD PRIMARY KEY (`id`); | |||
-- | |||
-- Indexes for table `verification` | |||
-- | |||
ALTER TABLE `verification` | |||
ADD PRIMARY KEY (`id`); | |||
-- | |||
-- AUTO_INCREMENT for dumped tables | |||
-- | |||
-- | |||
-- AUTO_INCREMENT for table `admin` | |||
-- | |||
ALTER TABLE `admin` | |||
MODIFY `id` int(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; | |||
-- | |||
-- AUTO_INCREMENT for table `booking` | |||
-- | |||
ALTER TABLE `booking` | |||
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=159; | |||
-- | |||
-- AUTO_INCREMENT for table `booking_approve` | |||
-- | |||
ALTER TABLE `booking_approve` | |||
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=84; | |||
-- | |||
-- AUTO_INCREMENT for table `book_push` | |||
-- | |||
ALTER TABLE `book_push` | |||
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=39; | |||
-- | |||
-- AUTO_INCREMENT for table `car_color` | |||
-- | |||
ALTER TABLE `car_color` | |||
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=17; | |||
-- | |||
-- AUTO_INCREMENT for table `car_details` | |||
-- | |||
ALTER TABLE `car_details` | |||
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=184; | |||
-- | |||
-- AUTO_INCREMENT for table `car_make` | |||
-- | |||
ALTER TABLE `car_make` | |||
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=41; | |||
-- | |||
-- AUTO_INCREMENT for table `car_type` | |||
-- | |||
ALTER TABLE `car_type` | |||
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; | |||
-- | |||
-- AUTO_INCREMENT for table `chat` | |||
-- | |||
ALTER TABLE `chat` | |||
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; | |||
-- | |||
-- AUTO_INCREMENT for table `cms` | |||
-- | |||
ALTER TABLE `cms` | |||
MODIFY `id` int(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; | |||
-- | |||
-- AUTO_INCREMENT for table `countries` | |||
-- | |||
ALTER TABLE `countries` | |||
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; | |||
-- | |||
-- AUTO_INCREMENT for table `customer` | |||
-- | |||
ALTER TABLE `customer` | |||
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; | |||
-- | |||
-- AUTO_INCREMENT for table `dropping_points` | |||
-- | |||
ALTER TABLE `dropping_points` | |||
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; | |||
-- | |||
-- AUTO_INCREMENT for table `keys` | |||
-- | |||
ALTER TABLE `keys` | |||
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; | |||
-- | |||
-- AUTO_INCREMENT for table `notifications` | |||
-- | |||
ALTER TABLE `notifications` | |||
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=351; | |||
-- | |||
-- AUTO_INCREMENT for table `payment` | |||
-- | |||
ALTER TABLE `payment` | |||
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; | |||
-- | |||
-- AUTO_INCREMENT for table `rating` | |||
-- | |||
ALTER TABLE `rating` | |||
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=84; | |||
-- | |||
-- AUTO_INCREMENT for table `report` | |||
-- | |||
ALTER TABLE `report` | |||
MODIFY `Id` int(11) NOT NULL AUTO_INCREMENT; | |||
-- | |||
-- AUTO_INCREMENT for table `report_ride` | |||
-- | |||
ALTER TABLE `report_ride` | |||
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=32; | |||
-- | |||
-- AUTO_INCREMENT for table `ride` | |||
-- | |||
ALTER TABLE `ride` | |||
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=623; | |||
-- | |||
-- AUTO_INCREMENT for table `ride_alert` | |||
-- | |||
ALTER TABLE `ride_alert` | |||
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=107; | |||
-- | |||
-- AUTO_INCREMENT for table `users` | |||
-- | |||
ALTER TABLE `users` | |||
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=402; | |||
-- | |||
-- AUTO_INCREMENT for table `user_details` | |||
-- | |||
ALTER TABLE `user_details` | |||
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=432; | |||
-- | |||
-- AUTO_INCREMENT for table `verification` | |||
-- | |||
ALTER TABLE `verification` | |||
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=711; | |||
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 */; |
Please
register
or
sign in
to comment