-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdb.sql
More file actions
126 lines (116 loc) · 43 KB
/
db.sql
File metadata and controls
126 lines (116 loc) · 43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
-- Adminer 4.7.6 MySQL dump
SET NAMES utf8;
SET time_zone = '+00:00';
SET foreign_key_checks = 0;
SET sql_mode = 'NO_AUTO_VALUE_ON_ZERO';
DROP TABLE IF EXISTS `flights`;
CREATE TABLE `flights` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) NOT NULL,
`status` enum('SCHEDULED','IN-FLIGHT','CANCELLED') NOT NULL,
`scheduledAt` datetime NOT NULL,
`createdAt` datetime(6) NOT NULL DEFAULT CURRENT_TIMESTAMP(6),
`updatedAt` datetime(6) NOT NULL DEFAULT CURRENT_TIMESTAMP(6),
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
INSERT INTO `flights` (`id`, `name`, `status`, `scheduledAt`, `createdAt`, `updatedAt`) VALUES
(1, 'Test flight', 'CANCELLED', '2020-09-02 16:01:22', '2020-09-02 16:01:22.000000', '2020-09-04 13:31:36.000000');
DROP TABLE IF EXISTS `migrations`;
CREATE TABLE `migrations` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`timestamp` bigint(20) NOT NULL,
`name` varchar(255) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
INSERT INTO `migrations` (`id`, `timestamp`, `name`) VALUES
(1, 1598342890712, 'WhetherHistory1598342890712');
DROP TABLE IF EXISTS `users`;
CREATE TABLE `users` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`display_name` varchar(150) NOT NULL,
`username` varchar(150) NOT NULL,
`password` text NOT NULL,
`createdAt` datetime(6) NOT NULL DEFAULT CURRENT_TIMESTAMP(6),
`updatedAt` datetime(6) NOT NULL DEFAULT CURRENT_TIMESTAMP(6),
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
INSERT INTO `users` (`id`, `display_name`, `username`, `password`, `createdAt`, `updatedAt`) VALUES
(1, 'Test user', 'testuser123', '$2b$10$wGU/hMEnAXM2phO4rnaPo.7dayfvRcm8Os9a4VSUbHALCyEza9u.a', '2020-09-02 14:02:21.000000', '2020-09-02 14:02:21.000000');
DROP TABLE IF EXISTS `whether_history`;
CREATE TABLE `whether_history` (
`city` varchar(150) NOT NULL,
`country` varchar(150) DEFAULT NULL,
`details` longtext,
`createdAt` datetime(6) NOT NULL DEFAULT CURRENT_TIMESTAMP(6),
`updatedAt` datetime(6) NOT NULL DEFAULT CURRENT_TIMESTAMP(6),
`id` int(11) NOT NULL AUTO_INCREMENT,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
INSERT INTO `whether_history` (`city`, `country`, `details`, `createdAt`, `updatedAt`, `id`) VALUES
('indore', NULL, '{\"coord\":{\"lon\":75.83,\"lat\":22.72},\"weather\":[{\"id\":803,\"main\":\"Clouds\",\"description\":\"broken clouds\",\"icon\":\"04d\"}],\"base\":\"stations\",\"main\":{\"temp\":301.15,\"feels_like\":303.91,\"temp_min\":301.15,\"temp_max\":301.15,\"pressure\":1008,\"humidity\":69},\"visibility\":6000,\"wind\":{\"speed\":2.6,\"deg\":250},\"clouds\":{\"all\":75},\"dt\":1598361204,\"sys\":{\"type\":1,\"id\":9067,\"country\":\"IN\",\"sunrise\":1598315830,\"sunset\":1598361644},\"timezone\":19800,\"id\":1269743,\"name\":\"Indore\",\"cod\":200}', '2020-08-25 18:43:46.499311', '2020-08-25 18:43:46.499311', 1),
('indore', NULL, '{\"coord\":{\"lon\":75.83,\"lat\":22.72},\"weather\":[{\"id\":803,\"main\":\"Clouds\",\"description\":\"broken clouds\",\"icon\":\"04d\"}],\"base\":\"stations\",\"main\":{\"temp\":301.15,\"feels_like\":303.91,\"temp_min\":301.15,\"temp_max\":301.15,\"pressure\":1008,\"humidity\":69},\"visibility\":6000,\"wind\":{\"speed\":2.6,\"deg\":250},\"clouds\":{\"all\":75},\"dt\":1598361204,\"sys\":{\"type\":1,\"id\":9067,\"country\":\"IN\",\"sunrise\":1598315830,\"sunset\":1598361644},\"timezone\":19800,\"id\":1269743,\"name\":\"Indore\",\"cod\":200}', '2020-08-25 18:48:16.507583', '2020-08-25 18:48:16.507583', 2),
('indore', NULL, '{\"coord\":{\"lon\":75.83,\"lat\":22.72},\"weather\":[{\"id\":803,\"main\":\"Clouds\",\"description\":\"broken clouds\",\"icon\":\"04d\"}],\"base\":\"stations\",\"main\":{\"temp\":301.15,\"feels_like\":303.91,\"temp_min\":301.15,\"temp_max\":301.15,\"pressure\":1008,\"humidity\":69},\"visibility\":6000,\"wind\":{\"speed\":2.6,\"deg\":250},\"clouds\":{\"all\":75},\"dt\":1598361204,\"sys\":{\"type\":1,\"id\":9067,\"country\":\"IN\",\"sunrise\":1598315830,\"sunset\":1598361644},\"timezone\":19800,\"id\":1269743,\"name\":\"Indore\",\"cod\":200}', '2020-08-25 18:48:24.469878', '2020-08-25 18:48:24.469878', 3),
('indore', NULL, '{\"coord\":{\"lon\":75.83,\"lat\":22.72},\"weather\":[{\"id\":803,\"main\":\"Clouds\",\"description\":\"broken clouds\",\"icon\":\"04d\"}],\"base\":\"stations\",\"main\":{\"temp\":301.15,\"feels_like\":303.91,\"temp_min\":301.15,\"temp_max\":301.15,\"pressure\":1008,\"humidity\":69},\"visibility\":6000,\"wind\":{\"speed\":2.6,\"deg\":250},\"clouds\":{\"all\":75},\"dt\":1598361204,\"sys\":{\"type\":1,\"id\":9067,\"country\":\"IN\",\"sunrise\":1598315830,\"sunset\":1598361644},\"timezone\":19800,\"id\":1269743,\"name\":\"Indore\",\"cod\":200}', '2020-08-25 18:48:30.265722', '2020-08-25 18:48:30.265722', 4),
('bhopal', NULL, '{\"coord\":{\"lon\":77.4,\"lat\":23.27},\"weather\":[{\"id\":721,\"main\":\"Haze\",\"description\":\"haze\",\"icon\":\"50n\"}],\"base\":\"stations\",\"main\":{\"temp\":302.15,\"feels_like\":305.55,\"temp_min\":302.15,\"temp_max\":302.15,\"pressure\":1007,\"humidity\":70},\"visibility\":5000,\"wind\":{\"speed\":2.6,\"deg\":230},\"clouds\":{\"all\":75},\"dt\":1598361552,\"sys\":{\"type\":1,\"id\":9063,\"country\":\"IN\",\"sunrise\":1598315423,\"sunset\":1598361298},\"timezone\":19800,\"id\":1275841,\"name\":\"Bhopal\",\"cod\":200}', '2020-08-25 18:49:12.295149', '2020-08-25 18:49:12.295149', 5),
('indore', NULL, '{\"coord\":{\"lon\":75.83,\"lat\":22.72},\"weather\":[{\"id\":803,\"main\":\"Clouds\",\"description\":\"broken clouds\",\"icon\":\"04n\"}],\"base\":\"stations\",\"main\":{\"temp\":301.15,\"feels_like\":303.91,\"temp_min\":301.15,\"temp_max\":301.15,\"pressure\":1008,\"humidity\":69},\"visibility\":6000,\"wind\":{\"speed\":2.6,\"deg\":250},\"clouds\":{\"all\":75},\"dt\":1598361908,\"sys\":{\"type\":1,\"id\":9067,\"country\":\"IN\",\"sunrise\":1598315830,\"sunset\":1598361644},\"timezone\":19800,\"id\":1269743,\"name\":\"Indore\",\"cod\":200}', '2020-08-25 18:59:12.579466', '2020-08-25 18:59:12.579466', 6),
('indore', NULL, '{\"coord\":{\"lon\":75.83,\"lat\":22.72},\"weather\":[{\"id\":803,\"main\":\"Clouds\",\"description\":\"broken clouds\",\"icon\":\"04n\"}],\"base\":\"stations\",\"main\":{\"temp\":301.15,\"feels_like\":303.91,\"temp_min\":301.15,\"temp_max\":301.15,\"pressure\":1008,\"humidity\":69},\"visibility\":6000,\"wind\":{\"speed\":2.6,\"deg\":250},\"clouds\":{\"all\":75},\"dt\":1598361908,\"sys\":{\"type\":1,\"id\":9067,\"country\":\"IN\",\"sunrise\":1598315830,\"sunset\":1598361644},\"timezone\":19800,\"id\":1269743,\"name\":\"Indore\",\"cod\":200}', '2020-08-25 18:59:29.604998', '2020-08-25 18:59:29.604998', 7),
('indore', NULL, '{\"coord\":{\"lon\":75.83,\"lat\":22.72},\"weather\":[{\"id\":803,\"main\":\"Clouds\",\"description\":\"broken clouds\",\"icon\":\"04n\"}],\"base\":\"stations\",\"main\":{\"temp\":301.15,\"feels_like\":303.91,\"temp_min\":301.15,\"temp_max\":301.15,\"pressure\":1008,\"humidity\":69},\"visibility\":6000,\"wind\":{\"speed\":2.6,\"deg\":250},\"clouds\":{\"all\":75},\"dt\":1598361908,\"sys\":{\"type\":1,\"id\":9067,\"country\":\"IN\",\"sunrise\":1598315830,\"sunset\":1598361644},\"timezone\":19800,\"id\":1269743,\"name\":\"Indore\",\"cod\":200}', '2020-08-25 19:00:11.201196', '2020-08-25 19:00:11.201196', 8),
('indore', NULL, '{\"coord\":{\"lon\":75.83,\"lat\":22.72},\"weather\":[{\"id\":803,\"main\":\"Clouds\",\"description\":\"broken clouds\",\"icon\":\"04n\"}],\"base\":\"stations\",\"main\":{\"temp\":301.15,\"feels_like\":303.91,\"temp_min\":301.15,\"temp_max\":301.15,\"pressure\":1008,\"humidity\":69},\"visibility\":6000,\"wind\":{\"speed\":2.6,\"deg\":250},\"clouds\":{\"all\":75},\"dt\":1598361908,\"sys\":{\"type\":1,\"id\":9067,\"country\":\"IN\",\"sunrise\":1598315830,\"sunset\":1598361644},\"timezone\":19800,\"id\":1269743,\"name\":\"Indore\",\"cod\":200}', '2020-08-25 19:00:36.038447', '2020-08-25 19:00:36.038447', 9),
('indore', NULL, '{\"coord\":{\"lon\":75.83,\"lat\":22.72},\"weather\":[{\"id\":803,\"main\":\"Clouds\",\"description\":\"broken clouds\",\"icon\":\"04n\"}],\"base\":\"stations\",\"main\":{\"temp\":301.15,\"feels_like\":303.91,\"temp_min\":301.15,\"temp_max\":301.15,\"pressure\":1008,\"humidity\":69},\"visibility\":6000,\"wind\":{\"speed\":2.6,\"deg\":250},\"clouds\":{\"all\":75},\"dt\":1598361908,\"sys\":{\"type\":1,\"id\":9067,\"country\":\"IN\",\"sunrise\":1598315830,\"sunset\":1598361644},\"timezone\":19800,\"id\":1269743,\"name\":\"Indore\",\"cod\":200}', '2020-08-25 19:01:08.213003', '2020-08-25 19:01:08.213003', 10),
('indore', NULL, '{\"coord\":{\"lon\":75.83,\"lat\":22.72},\"weather\":[{\"id\":803,\"main\":\"Clouds\",\"description\":\"broken clouds\",\"icon\":\"04n\"}],\"base\":\"stations\",\"main\":{\"temp\":301.15,\"feels_like\":303.91,\"temp_min\":301.15,\"temp_max\":301.15,\"pressure\":1008,\"humidity\":69},\"visibility\":6000,\"wind\":{\"speed\":2.6,\"deg\":250},\"clouds\":{\"all\":75},\"dt\":1598361908,\"sys\":{\"type\":1,\"id\":9067,\"country\":\"IN\",\"sunrise\":1598315830,\"sunset\":1598361644},\"timezone\":19800,\"id\":1269743,\"name\":\"Indore\",\"cod\":200}', '2020-08-25 19:01:29.469907', '2020-08-25 19:01:29.469907', 11),
('indore', NULL, '{\"coord\":{\"lon\":75.83,\"lat\":22.72},\"weather\":[{\"id\":803,\"main\":\"Clouds\",\"description\":\"broken clouds\",\"icon\":\"04n\"}],\"base\":\"stations\",\"main\":{\"temp\":301.15,\"feels_like\":303.91,\"temp_min\":301.15,\"temp_max\":301.15,\"pressure\":1008,\"humidity\":69},\"visibility\":6000,\"wind\":{\"speed\":2.6,\"deg\":250},\"clouds\":{\"all\":75},\"dt\":1598361908,\"sys\":{\"type\":1,\"id\":9067,\"country\":\"IN\",\"sunrise\":1598315830,\"sunset\":1598361644},\"timezone\":19800,\"id\":1269743,\"name\":\"Indore\",\"cod\":200}', '2020-08-25 19:02:13.282086', '2020-08-25 19:02:13.282086', 12),
('indore', NULL, '{\"coord\":{\"lon\":75.83,\"lat\":22.72},\"weather\":[{\"id\":803,\"main\":\"Clouds\",\"description\":\"broken clouds\",\"icon\":\"04n\"}],\"base\":\"stations\",\"main\":{\"temp\":301.15,\"feels_like\":303.91,\"temp_min\":301.15,\"temp_max\":301.15,\"pressure\":1008,\"humidity\":69},\"visibility\":6000,\"wind\":{\"speed\":2.6,\"deg\":250},\"clouds\":{\"all\":75},\"dt\":1598361908,\"sys\":{\"type\":1,\"id\":9067,\"country\":\"IN\",\"sunrise\":1598315830,\"sunset\":1598361644},\"timezone\":19800,\"id\":1269743,\"name\":\"Indore\",\"cod\":200}', '2020-08-25 19:02:48.878414', '2020-08-25 19:02:48.878414', 13),
('indore', NULL, '{\"coord\":{\"lon\":75.83,\"lat\":22.72},\"weather\":[{\"id\":803,\"main\":\"Clouds\",\"description\":\"broken clouds\",\"icon\":\"04n\"}],\"base\":\"stations\",\"main\":{\"temp\":301.15,\"feels_like\":303.91,\"temp_min\":301.15,\"temp_max\":301.15,\"pressure\":1008,\"humidity\":69},\"visibility\":6000,\"wind\":{\"speed\":2.6,\"deg\":250},\"clouds\":{\"all\":75},\"dt\":1598361908,\"sys\":{\"type\":1,\"id\":9067,\"country\":\"IN\",\"sunrise\":1598315830,\"sunset\":1598361644},\"timezone\":19800,\"id\":1269743,\"name\":\"Indore\",\"cod\":200}', '2020-08-25 19:03:14.059892', '2020-08-25 19:03:14.059892', 14),
('indore', NULL, '{\"coord\":{\"lon\":75.83,\"lat\":22.72},\"weather\":[{\"id\":803,\"main\":\"Clouds\",\"description\":\"broken clouds\",\"icon\":\"04n\"}],\"base\":\"stations\",\"main\":{\"temp\":301.15,\"feels_like\":303.91,\"temp_min\":301.15,\"temp_max\":301.15,\"pressure\":1008,\"humidity\":69},\"visibility\":6000,\"wind\":{\"speed\":2.6,\"deg\":250},\"clouds\":{\"all\":75},\"dt\":1598361908,\"sys\":{\"type\":1,\"id\":9067,\"country\":\"IN\",\"sunrise\":1598315830,\"sunset\":1598361644},\"timezone\":19800,\"id\":1269743,\"name\":\"Indore\",\"cod\":200}', '2020-08-25 19:04:28.797606', '2020-08-25 19:04:28.797606', 15),
('indore', NULL, '{\"coord\":{\"lon\":75.83,\"lat\":22.72},\"weather\":[{\"id\":803,\"main\":\"Clouds\",\"description\":\"broken clouds\",\"icon\":\"04n\"}],\"base\":\"stations\",\"main\":{\"temp\":301.15,\"feels_like\":303.91,\"temp_min\":301.15,\"temp_max\":301.15,\"pressure\":1008,\"humidity\":69},\"visibility\":6000,\"wind\":{\"speed\":2.6,\"deg\":250},\"clouds\":{\"all\":75},\"dt\":1598361908,\"sys\":{\"type\":1,\"id\":9067,\"country\":\"IN\",\"sunrise\":1598315830,\"sunset\":1598361644},\"timezone\":19800,\"id\":1269743,\"name\":\"Indore\",\"cod\":200}', '2020-08-25 19:04:54.082300', '2020-08-25 19:04:54.082300', 16),
('indore', NULL, '{\"coord\":{\"lon\":75.83,\"lat\":22.72},\"weather\":[{\"id\":803,\"main\":\"Clouds\",\"description\":\"broken clouds\",\"icon\":\"04n\"}],\"base\":\"stations\",\"main\":{\"temp\":301.15,\"feels_like\":303.91,\"temp_min\":301.15,\"temp_max\":301.15,\"pressure\":1008,\"humidity\":69},\"visibility\":6000,\"wind\":{\"speed\":2.6,\"deg\":250},\"clouds\":{\"all\":75},\"dt\":1598361908,\"sys\":{\"type\":1,\"id\":9067,\"country\":\"IN\",\"sunrise\":1598315830,\"sunset\":1598361644},\"timezone\":19800,\"id\":1269743,\"name\":\"Indore\",\"cod\":200}', '2020-08-25 19:05:15.434276', '2020-08-25 19:05:15.434276', 17),
('indore', NULL, '{\"coord\":{\"lon\":75.83,\"lat\":22.72},\"weather\":[{\"id\":803,\"main\":\"Clouds\",\"description\":\"broken clouds\",\"icon\":\"04n\"}],\"base\":\"stations\",\"main\":{\"temp\":301.15,\"feels_like\":303.91,\"temp_min\":301.15,\"temp_max\":301.15,\"pressure\":1008,\"humidity\":69},\"visibility\":6000,\"wind\":{\"speed\":2.6,\"deg\":250},\"clouds\":{\"all\":75},\"dt\":1598361908,\"sys\":{\"type\":1,\"id\":9067,\"country\":\"IN\",\"sunrise\":1598315830,\"sunset\":1598361644},\"timezone\":19800,\"id\":1269743,\"name\":\"Indore\",\"cod\":200}', '2020-08-25 19:05:26.768520', '2020-08-25 19:05:26.768520', 18),
('indore', NULL, '{\"coord\":{\"lon\":75.83,\"lat\":22.72},\"weather\":[{\"id\":803,\"main\":\"Clouds\",\"description\":\"broken clouds\",\"icon\":\"04n\"}],\"base\":\"stations\",\"main\":{\"temp\":301.15,\"feels_like\":303.91,\"temp_min\":301.15,\"temp_max\":301.15,\"pressure\":1008,\"humidity\":69},\"visibility\":6000,\"wind\":{\"speed\":2.6,\"deg\":250},\"clouds\":{\"all\":75},\"dt\":1598361908,\"sys\":{\"type\":1,\"id\":9067,\"country\":\"IN\",\"sunrise\":1598315830,\"sunset\":1598361644},\"timezone\":19800,\"id\":1269743,\"name\":\"Indore\",\"cod\":200}', '2020-08-25 19:06:12.774087', '2020-08-25 19:06:12.774087', 19),
('indore', NULL, '{\"coord\":{\"lon\":75.83,\"lat\":22.72},\"weather\":[{\"id\":803,\"main\":\"Clouds\",\"description\":\"broken clouds\",\"icon\":\"04n\"}],\"base\":\"stations\",\"main\":{\"temp\":301.15,\"feels_like\":303.91,\"temp_min\":301.15,\"temp_max\":301.15,\"pressure\":1008,\"humidity\":69},\"visibility\":6000,\"wind\":{\"speed\":2.6,\"deg\":250},\"clouds\":{\"all\":75},\"dt\":1598361908,\"sys\":{\"type\":1,\"id\":9067,\"country\":\"IN\",\"sunrise\":1598315830,\"sunset\":1598361644},\"timezone\":19800,\"id\":1269743,\"name\":\"Indore\",\"cod\":200}', '2020-08-25 19:06:30.103212', '2020-08-25 19:06:30.103212', 20),
('indore', NULL, '{\"coord\":{\"lon\":75.83,\"lat\":22.72},\"weather\":[{\"id\":803,\"main\":\"Clouds\",\"description\":\"broken clouds\",\"icon\":\"04n\"}],\"base\":\"stations\",\"main\":{\"temp\":301.15,\"feels_like\":303.91,\"temp_min\":301.15,\"temp_max\":301.15,\"pressure\":1008,\"humidity\":69},\"visibility\":6000,\"wind\":{\"speed\":2.6,\"deg\":250},\"clouds\":{\"all\":75},\"dt\":1598361908,\"sys\":{\"type\":1,\"id\":9067,\"country\":\"IN\",\"sunrise\":1598315830,\"sunset\":1598361644},\"timezone\":19800,\"id\":1269743,\"name\":\"Indore\",\"cod\":200}', '2020-08-25 19:06:41.724577', '2020-08-25 19:06:41.724577', 21),
('indore', NULL, '{\"coord\":{\"lon\":75.83,\"lat\":22.72},\"weather\":[{\"id\":803,\"main\":\"Clouds\",\"description\":\"broken clouds\",\"icon\":\"04n\"}],\"base\":\"stations\",\"main\":{\"temp\":301.15,\"feels_like\":303.91,\"temp_min\":301.15,\"temp_max\":301.15,\"pressure\":1008,\"humidity\":69},\"visibility\":6000,\"wind\":{\"speed\":2.6,\"deg\":250},\"clouds\":{\"all\":75},\"dt\":1598361908,\"sys\":{\"type\":1,\"id\":9067,\"country\":\"IN\",\"sunrise\":1598315830,\"sunset\":1598361644},\"timezone\":19800,\"id\":1269743,\"name\":\"Indore\",\"cod\":200}', '2020-08-25 19:07:03.715695', '2020-08-25 19:07:03.715695', 22),
('indore', NULL, '{\"coord\":{\"lon\":75.83,\"lat\":22.72},\"weather\":[{\"id\":803,\"main\":\"Clouds\",\"description\":\"broken clouds\",\"icon\":\"04n\"}],\"base\":\"stations\",\"main\":{\"temp\":301.15,\"feels_like\":303.91,\"temp_min\":301.15,\"temp_max\":301.15,\"pressure\":1008,\"humidity\":69},\"visibility\":6000,\"wind\":{\"speed\":2.6,\"deg\":250},\"clouds\":{\"all\":75},\"dt\":1598361908,\"sys\":{\"type\":1,\"id\":9067,\"country\":\"IN\",\"sunrise\":1598315830,\"sunset\":1598361644},\"timezone\":19800,\"id\":1269743,\"name\":\"Indore\",\"cod\":200}', '2020-08-25 19:07:24.063239', '2020-08-25 19:07:24.063239', 23),
('indore', NULL, '{\"coord\":{\"lon\":75.83,\"lat\":22.72},\"weather\":[{\"id\":802,\"main\":\"Clouds\",\"description\":\"scattered clouds\",\"icon\":\"03n\"}],\"base\":\"stations\",\"main\":{\"temp\":297.24,\"feels_like\":298.63,\"temp_min\":297.24,\"temp_max\":297.24,\"pressure\":1006,\"humidity\":88,\"sea_level\":1006,\"grnd_level\":945},\"visibility\":10000,\"wind\":{\"speed\":4.71,\"deg\":249},\"clouds\":{\"all\":31},\"dt\":1598363015,\"sys\":{\"country\":\"IN\",\"sunrise\":1598315830,\"sunset\":1598361644},\"timezone\":19800,\"id\":1269743,\"name\":\"Indore\",\"cod\":200}', '2020-08-25 19:13:35.392187', '2020-08-25 19:13:35.392187', 24),
('indore', NULL, '{\"coord\":{\"lon\":75.83,\"lat\":22.72},\"weather\":[{\"id\":802,\"main\":\"Clouds\",\"description\":\"scattered clouds\",\"icon\":\"03n\"}],\"base\":\"stations\",\"main\":{\"temp\":297.24,\"feels_like\":298.63,\"temp_min\":297.24,\"temp_max\":297.24,\"pressure\":1006,\"humidity\":88,\"sea_level\":1006,\"grnd_level\":945},\"visibility\":10000,\"wind\":{\"speed\":4.71,\"deg\":249},\"clouds\":{\"all\":31},\"dt\":1598363015,\"sys\":{\"country\":\"IN\",\"sunrise\":1598315830,\"sunset\":1598361644},\"timezone\":19800,\"id\":1269743,\"name\":\"Indore\",\"cod\":200}', '2020-08-25 19:14:12.648359', '2020-08-25 19:14:12.648359', 25),
('indore', NULL, '{\"coord\":{\"lon\":75.83,\"lat\":22.72},\"weather\":[{\"id\":802,\"main\":\"Clouds\",\"description\":\"scattered clouds\",\"icon\":\"03n\"}],\"base\":\"stations\",\"main\":{\"temp\":297.24,\"feels_like\":298.63,\"temp_min\":297.24,\"temp_max\":297.24,\"pressure\":1006,\"humidity\":88,\"sea_level\":1006,\"grnd_level\":945},\"visibility\":10000,\"wind\":{\"speed\":4.71,\"deg\":249},\"clouds\":{\"all\":31},\"dt\":1598363015,\"sys\":{\"country\":\"IN\",\"sunrise\":1598315830,\"sunset\":1598361644},\"timezone\":19800,\"id\":1269743,\"name\":\"Indore\",\"cod\":200}', '2020-08-25 19:14:56.205083', '2020-08-25 19:14:56.205083', 26),
('indore', NULL, '{\"coord\":{\"lon\":75.83,\"lat\":22.72},\"weather\":[{\"id\":802,\"main\":\"Clouds\",\"description\":\"scattered clouds\",\"icon\":\"03n\"}],\"base\":\"stations\",\"main\":{\"temp\":297.24,\"feels_like\":298.63,\"temp_min\":297.24,\"temp_max\":297.24,\"pressure\":1006,\"humidity\":88,\"sea_level\":1006,\"grnd_level\":945},\"visibility\":10000,\"wind\":{\"speed\":4.71,\"deg\":249},\"clouds\":{\"all\":31},\"dt\":1598363015,\"sys\":{\"country\":\"IN\",\"sunrise\":1598315830,\"sunset\":1598361644},\"timezone\":19800,\"id\":1269743,\"name\":\"Indore\",\"cod\":200}', '2020-08-25 19:15:25.907350', '2020-08-25 19:15:25.907350', 27),
('indore', NULL, '{\"coord\":{\"lon\":75.83,\"lat\":22.72},\"weather\":[{\"id\":802,\"main\":\"Clouds\",\"description\":\"scattered clouds\",\"icon\":\"03n\"}],\"base\":\"stations\",\"main\":{\"temp\":297.24,\"feels_like\":298.63,\"temp_min\":297.24,\"temp_max\":297.24,\"pressure\":1006,\"humidity\":88,\"sea_level\":1006,\"grnd_level\":945},\"visibility\":10000,\"wind\":{\"speed\":4.71,\"deg\":249},\"clouds\":{\"all\":31},\"dt\":1598363015,\"sys\":{\"country\":\"IN\",\"sunrise\":1598315830,\"sunset\":1598361644},\"timezone\":19800,\"id\":1269743,\"name\":\"Indore\",\"cod\":200}', '2020-08-25 19:16:04.994478', '2020-08-25 19:16:04.994478', 28),
('indore', NULL, '{\"coord\":{\"lon\":75.83,\"lat\":22.72},\"weather\":[{\"id\":802,\"main\":\"Clouds\",\"description\":\"scattered clouds\",\"icon\":\"03n\"}],\"base\":\"stations\",\"main\":{\"temp\":297.24,\"feels_like\":298.63,\"temp_min\":297.24,\"temp_max\":297.24,\"pressure\":1006,\"humidity\":88,\"sea_level\":1006,\"grnd_level\":945},\"visibility\":10000,\"wind\":{\"speed\":4.71,\"deg\":249},\"clouds\":{\"all\":31},\"dt\":1598363015,\"sys\":{\"country\":\"IN\",\"sunrise\":1598315830,\"sunset\":1598361644},\"timezone\":19800,\"id\":1269743,\"name\":\"Indore\",\"cod\":200}', '2020-08-25 19:16:57.906468', '2020-08-25 19:16:57.906468', 29),
('indore', NULL, '{\"coord\":{\"lon\":75.83,\"lat\":22.72},\"weather\":[{\"id\":802,\"main\":\"Clouds\",\"description\":\"scattered clouds\",\"icon\":\"03n\"}],\"base\":\"stations\",\"main\":{\"temp\":297.24,\"feels_like\":298.63,\"temp_min\":297.24,\"temp_max\":297.24,\"pressure\":1006,\"humidity\":88,\"sea_level\":1006,\"grnd_level\":945},\"visibility\":10000,\"wind\":{\"speed\":4.71,\"deg\":249},\"clouds\":{\"all\":31},\"dt\":1598363015,\"sys\":{\"country\":\"IN\",\"sunrise\":1598315830,\"sunset\":1598361644},\"timezone\":19800,\"id\":1269743,\"name\":\"Indore\",\"cod\":200}', '2020-08-25 19:18:07.911808', '2020-08-25 19:18:07.911808', 30),
('indore', NULL, '{\"coord\":{\"lon\":75.83,\"lat\":22.72},\"weather\":[{\"id\":802,\"main\":\"Clouds\",\"description\":\"scattered clouds\",\"icon\":\"03n\"}],\"base\":\"stations\",\"main\":{\"temp\":297.24,\"feels_like\":298.63,\"temp_min\":297.24,\"temp_max\":297.24,\"pressure\":1006,\"humidity\":88,\"sea_level\":1006,\"grnd_level\":945},\"visibility\":10000,\"wind\":{\"speed\":4.71,\"deg\":249},\"clouds\":{\"all\":31},\"dt\":1598363015,\"sys\":{\"country\":\"IN\",\"sunrise\":1598315830,\"sunset\":1598361644},\"timezone\":19800,\"id\":1269743,\"name\":\"Indore\",\"cod\":200}', '2020-08-25 19:18:20.490817', '2020-08-25 19:18:20.490817', 31),
('indore', NULL, '{\"coord\":{\"lon\":75.83,\"lat\":22.72},\"weather\":[{\"id\":802,\"main\":\"Clouds\",\"description\":\"scattered clouds\",\"icon\":\"03n\"}],\"base\":\"stations\",\"main\":{\"temp\":297.24,\"feels_like\":298.63,\"temp_min\":297.24,\"temp_max\":297.24,\"pressure\":1006,\"humidity\":88,\"sea_level\":1006,\"grnd_level\":945},\"visibility\":10000,\"wind\":{\"speed\":4.71,\"deg\":249},\"clouds\":{\"all\":31},\"dt\":1598363015,\"sys\":{\"country\":\"IN\",\"sunrise\":1598315830,\"sunset\":1598361644},\"timezone\":19800,\"id\":1269743,\"name\":\"Indore\",\"cod\":200}', '2020-08-25 19:19:54.141823', '2020-08-25 19:19:54.141823', 32),
('indore', NULL, '{\"coord\":{\"lon\":75.83,\"lat\":22.72},\"weather\":[{\"id\":802,\"main\":\"Clouds\",\"description\":\"scattered clouds\",\"icon\":\"03n\"}],\"base\":\"stations\",\"main\":{\"temp\":297.24,\"feels_like\":298.63,\"temp_min\":297.24,\"temp_max\":297.24,\"pressure\":1006,\"humidity\":88,\"sea_level\":1006,\"grnd_level\":945},\"visibility\":10000,\"wind\":{\"speed\":4.71,\"deg\":249},\"clouds\":{\"all\":31},\"dt\":1598363015,\"sys\":{\"country\":\"IN\",\"sunrise\":1598315830,\"sunset\":1598361644},\"timezone\":19800,\"id\":1269743,\"name\":\"Indore\",\"cod\":200}', '2020-08-25 19:20:25.168838', '2020-08-25 19:20:25.168838', 33),
('indore', NULL, '{\"coord\":{\"lon\":75.83,\"lat\":22.72},\"weather\":[{\"id\":721,\"main\":\"Haze\",\"description\":\"haze\",\"icon\":\"50d\"}],\"base\":\"stations\",\"main\":{\"temp\":300.15,\"feels_like\":301.61,\"temp_min\":300.15,\"temp_max\":300.15,\"pressure\":1009,\"humidity\":74},\"visibility\":5000,\"wind\":{\"speed\":4.6,\"deg\":270},\"clouds\":{\"all\":75},\"dt\":1598435207,\"sys\":{\"type\":1,\"id\":9067,\"country\":\"IN\",\"sunrise\":1598402250,\"sunset\":1598447991},\"timezone\":19800,\"id\":1269743,\"name\":\"Indore\",\"cod\":200}', '2020-08-26 15:18:18.282275', '2020-08-26 15:18:18.282275', 34),
('indore', NULL, '{\"coord\":{\"lon\":75.83,\"lat\":22.72},\"weather\":[{\"id\":721,\"main\":\"Haze\",\"description\":\"haze\",\"icon\":\"50d\"}],\"base\":\"stations\",\"main\":{\"temp\":300.15,\"feels_like\":301.61,\"temp_min\":300.15,\"temp_max\":300.15,\"pressure\":1009,\"humidity\":74},\"visibility\":5000,\"wind\":{\"speed\":4.6,\"deg\":270},\"clouds\":{\"all\":75},\"dt\":1598435315,\"sys\":{\"type\":1,\"id\":9067,\"country\":\"IN\",\"sunrise\":1598402250,\"sunset\":1598447991},\"timezone\":19800,\"id\":1269743,\"name\":\"Indore\",\"cod\":200}', '2020-08-26 15:18:35.345076', '2020-08-26 15:18:35.345076', 35),
('indore', NULL, '{\"coord\":{\"lon\":75.83,\"lat\":22.72},\"weather\":[{\"id\":721,\"main\":\"Haze\",\"description\":\"haze\",\"icon\":\"50d\"}],\"base\":\"stations\",\"main\":{\"temp\":300.15,\"feels_like\":301.61,\"temp_min\":300.15,\"temp_max\":300.15,\"pressure\":1009,\"humidity\":74},\"visibility\":5000,\"wind\":{\"speed\":4.6,\"deg\":270},\"clouds\":{\"all\":75},\"dt\":1598435315,\"sys\":{\"type\":1,\"id\":9067,\"country\":\"IN\",\"sunrise\":1598402250,\"sunset\":1598447991},\"timezone\":19800,\"id\":1269743,\"name\":\"Indore\",\"cod\":200}', '2020-08-26 15:18:41.654323', '2020-08-26 15:18:41.654323', 36),
('indore', NULL, '{\"coord\":{\"lon\":75.83,\"lat\":22.72},\"weather\":[{\"id\":721,\"main\":\"Haze\",\"description\":\"haze\",\"icon\":\"50d\"}],\"base\":\"stations\",\"main\":{\"temp\":300.15,\"feels_like\":301.61,\"temp_min\":300.15,\"temp_max\":300.15,\"pressure\":1009,\"humidity\":74},\"visibility\":5000,\"wind\":{\"speed\":4.6,\"deg\":270},\"clouds\":{\"all\":75},\"dt\":1598435315,\"sys\":{\"type\":1,\"id\":9067,\"country\":\"IN\",\"sunrise\":1598402250,\"sunset\":1598447991},\"timezone\":19800,\"id\":1269743,\"name\":\"Indore\",\"cod\":200}', '2020-08-26 15:20:41.843452', '2020-08-26 15:20:41.843452', 37),
('indore', NULL, '{\"coord\":{\"lon\":75.83,\"lat\":22.72},\"weather\":[{\"id\":721,\"main\":\"Haze\",\"description\":\"haze\",\"icon\":\"50d\"}],\"base\":\"stations\",\"main\":{\"temp\":300.15,\"feels_like\":301.61,\"temp_min\":300.15,\"temp_max\":300.15,\"pressure\":1009,\"humidity\":74},\"visibility\":5000,\"wind\":{\"speed\":4.6,\"deg\":270},\"clouds\":{\"all\":75},\"dt\":1598435315,\"sys\":{\"type\":1,\"id\":9067,\"country\":\"IN\",\"sunrise\":1598402250,\"sunset\":1598447991},\"timezone\":19800,\"id\":1269743,\"name\":\"Indore\",\"cod\":200}', '2020-08-26 15:20:52.515928', '2020-08-26 15:20:52.515928', 38),
('indore', NULL, '{\"coord\":{\"lon\":75.83,\"lat\":22.72},\"weather\":[{\"id\":721,\"main\":\"Haze\",\"description\":\"haze\",\"icon\":\"50d\"}],\"base\":\"stations\",\"main\":{\"temp\":300.15,\"feels_like\":301.61,\"temp_min\":300.15,\"temp_max\":300.15,\"pressure\":1009,\"humidity\":74},\"visibility\":5000,\"wind\":{\"speed\":4.6,\"deg\":270},\"clouds\":{\"all\":75},\"dt\":1598435315,\"sys\":{\"type\":1,\"id\":9067,\"country\":\"IN\",\"sunrise\":1598402250,\"sunset\":1598447991},\"timezone\":19800,\"id\":1269743,\"name\":\"Indore\",\"cod\":200}', '2020-08-26 15:21:22.394449', '2020-08-26 15:21:22.394449', 39),
('indore', NULL, '{\"coord\":{\"lon\":75.83,\"lat\":22.72},\"weather\":[{\"id\":721,\"main\":\"Haze\",\"description\":\"haze\",\"icon\":\"50d\"}],\"base\":\"stations\",\"main\":{\"temp\":300.15,\"feels_like\":301.61,\"temp_min\":300.15,\"temp_max\":300.15,\"pressure\":1009,\"humidity\":74},\"visibility\":5000,\"wind\":{\"speed\":4.6,\"deg\":270},\"clouds\":{\"all\":75},\"dt\":1598435207,\"sys\":{\"type\":1,\"id\":9067,\"country\":\"IN\",\"sunrise\":1598402250,\"sunset\":1598447991},\"timezone\":19800,\"id\":1269743,\"name\":\"Indore\",\"cod\":200}', '2020-08-26 15:22:07.666799', '2020-08-26 15:22:07.666799', 40),
('indore', NULL, '{\"coord\":{\"lon\":75.83,\"lat\":22.72},\"weather\":[{\"id\":721,\"main\":\"Haze\",\"description\":\"haze\",\"icon\":\"50d\"}],\"base\":\"stations\",\"main\":{\"temp\":300.15,\"feels_like\":301.61,\"temp_min\":300.15,\"temp_max\":300.15,\"pressure\":1009,\"humidity\":74},\"visibility\":5000,\"wind\":{\"speed\":4.6,\"deg\":270},\"clouds\":{\"all\":75},\"dt\":1598435207,\"sys\":{\"type\":1,\"id\":9067,\"country\":\"IN\",\"sunrise\":1598402250,\"sunset\":1598447991},\"timezone\":19800,\"id\":1269743,\"name\":\"Indore\",\"cod\":200}', '2020-08-26 15:22:11.564508', '2020-08-26 15:22:11.564508', 41),
('indore', NULL, '{\"coord\":{\"lon\":75.83,\"lat\":22.72},\"weather\":[{\"id\":721,\"main\":\"Haze\",\"description\":\"haze\",\"icon\":\"50d\"}],\"base\":\"stations\",\"main\":{\"temp\":300.15,\"feels_like\":301.61,\"temp_min\":300.15,\"temp_max\":300.15,\"pressure\":1009,\"humidity\":74},\"visibility\":5000,\"wind\":{\"speed\":4.6,\"deg\":270},\"clouds\":{\"all\":75},\"dt\":1598435207,\"sys\":{\"type\":1,\"id\":9067,\"country\":\"IN\",\"sunrise\":1598402250,\"sunset\":1598447991},\"timezone\":19800,\"id\":1269743,\"name\":\"Indore\",\"cod\":200}', '2020-08-26 15:24:08.358041', '2020-08-26 15:24:08.358041', 42),
('indore', NULL, '{\"coord\":{\"lon\":75.83,\"lat\":22.72},\"weather\":[{\"id\":721,\"main\":\"Haze\",\"description\":\"haze\",\"icon\":\"50d\"}],\"base\":\"stations\",\"main\":{\"temp\":300.15,\"feels_like\":301.61,\"temp_min\":300.15,\"temp_max\":300.15,\"pressure\":1009,\"humidity\":74},\"visibility\":5000,\"wind\":{\"speed\":4.6,\"deg\":270},\"clouds\":{\"all\":75},\"dt\":1598435207,\"sys\":{\"type\":1,\"id\":9067,\"country\":\"IN\",\"sunrise\":1598402250,\"sunset\":1598447991},\"timezone\":19800,\"id\":1269743,\"name\":\"Indore\",\"cod\":200}', '2020-08-26 15:25:35.842276', '2020-08-26 15:25:35.842276', 43),
('indore', NULL, '{\"coord\":{\"lon\":75.83,\"lat\":22.72},\"weather\":[{\"id\":721,\"main\":\"Haze\",\"description\":\"haze\",\"icon\":\"50d\"}],\"base\":\"stations\",\"main\":{\"temp\":300.15,\"feels_like\":301.61,\"temp_min\":300.15,\"temp_max\":300.15,\"pressure\":1009,\"humidity\":74},\"visibility\":5000,\"wind\":{\"speed\":4.6,\"deg\":270},\"clouds\":{\"all\":75},\"dt\":1598435207,\"sys\":{\"type\":1,\"id\":9067,\"country\":\"IN\",\"sunrise\":1598402250,\"sunset\":1598447991},\"timezone\":19800,\"id\":1269743,\"name\":\"Indore\",\"cod\":200}', '2020-08-26 15:26:07.692307', '2020-08-26 15:26:07.692307', 44),
('indore', NULL, '{\"coord\":{\"lon\":75.83,\"lat\":22.72},\"weather\":[{\"id\":721,\"main\":\"Haze\",\"description\":\"haze\",\"icon\":\"50d\"}],\"base\":\"stations\",\"main\":{\"temp\":300.15,\"feels_like\":301.61,\"temp_min\":300.15,\"temp_max\":300.15,\"pressure\":1009,\"humidity\":74},\"visibility\":5000,\"wind\":{\"speed\":4.6,\"deg\":270},\"clouds\":{\"all\":75},\"dt\":1598435207,\"sys\":{\"type\":1,\"id\":9067,\"country\":\"IN\",\"sunrise\":1598402250,\"sunset\":1598447991},\"timezone\":19800,\"id\":1269743,\"name\":\"Indore\",\"cod\":200}', '2020-08-26 15:27:09.178141', '2020-08-26 15:27:09.178141', 45),
('london', NULL, '{\"coord\":{\"lon\":-0.13,\"lat\":51.51},\"weather\":[{\"id\":803,\"main\":\"Clouds\",\"description\":\"broken clouds\",\"icon\":\"04d\"}],\"base\":\"stations\",\"main\":{\"temp\":291.92,\"feels_like\":285.75,\"temp_min\":290.93,\"temp_max\":292.59,\"pressure\":1011,\"humidity\":55},\"visibility\":10000,\"wind\":{\"speed\":8.7,\"deg\":280},\"clouds\":{\"all\":75},\"dt\":1598435896,\"sys\":{\"type\":1,\"id\":1414,\"country\":\"GB\",\"sunrise\":1598418257,\"sunset\":1598468438},\"timezone\":3600,\"id\":2643743,\"name\":\"London\",\"cod\":200}', '2020-08-26 15:29:04.446331', '2020-08-26 15:29:04.446331', 46),
('london', NULL, '{\"coord\":{\"lon\":-0.13,\"lat\":51.51},\"weather\":[{\"id\":803,\"main\":\"Clouds\",\"description\":\"broken clouds\",\"icon\":\"04d\"}],\"base\":\"stations\",\"main\":{\"temp\":291.92,\"feels_like\":285.75,\"temp_min\":290.93,\"temp_max\":292.59,\"pressure\":1011,\"humidity\":55},\"visibility\":10000,\"wind\":{\"speed\":8.7,\"deg\":280},\"clouds\":{\"all\":75},\"dt\":1598435896,\"sys\":{\"type\":1,\"id\":1414,\"country\":\"GB\",\"sunrise\":1598418257,\"sunset\":1598468438},\"timezone\":3600,\"id\":2643743,\"name\":\"London\",\"cod\":200}', '2020-08-26 15:29:39.719459', '2020-08-26 15:29:39.719459', 47),
('Washington', NULL, '{\"coord\":{\"lon\":-120.5,\"lat\":47.5},\"weather\":[{\"id\":800,\"main\":\"Clear\",\"description\":\"clear sky\",\"icon\":\"01n\"}],\"base\":\"stations\",\"main\":{\"temp\":286.23,\"feels_like\":281.74,\"temp_min\":282.59,\"temp_max\":291.15,\"pressure\":1013,\"humidity\":48},\"visibility\":10000,\"wind\":{\"speed\":4.1,\"deg\":330},\"clouds\":{\"all\":1},\"dt\":1598435755,\"sys\":{\"type\":1,\"id\":3917,\"country\":\"US\",\"sunrise\":1598447624,\"sunset\":1598496837},\"timezone\":-25200,\"id\":5815135,\"name\":\"Washington\",\"cod\":200}', '2020-08-26 15:30:16.804628', '2020-08-26 15:30:16.804628', 48),
('bhopal', NULL, '{\"coord\":{\"lon\":77.4,\"lat\":23.27},\"weather\":[{\"id\":803,\"main\":\"Clouds\",\"description\":\"broken clouds\",\"icon\":\"04d\"}],\"base\":\"stations\",\"main\":{\"temp\":303.15,\"feels_like\":305.49,\"temp_min\":303.15,\"temp_max\":303.15,\"pressure\":1008,\"humidity\":66},\"visibility\":6000,\"wind\":{\"speed\":4.1,\"deg\":290},\"clouds\":{\"all\":75},\"dt\":1598438503,\"sys\":{\"type\":1,\"id\":9063,\"country\":\"IN\",\"sunrise\":1598401844,\"sunset\":1598447644},\"timezone\":19800,\"id\":1275841,\"name\":\"Bhopal\",\"cod\":200}', '2020-08-26 16:12:39.429892', '2020-08-26 16:12:39.429892', 49),
('indore', NULL, '{\"coord\":{\"lon\":75.83,\"lat\":22.72},\"weather\":[{\"id\":721,\"main\":\"Haze\",\"description\":\"haze\",\"icon\":\"50d\"}],\"base\":\"stations\",\"main\":{\"temp\":300.15,\"feels_like\":302.31,\"temp_min\":300.15,\"temp_max\":300.15,\"pressure\":1009,\"humidity\":74},\"visibility\":5000,\"wind\":{\"speed\":3.6,\"deg\":280},\"clouds\":{\"all\":75},\"dt\":1598438499,\"sys\":{\"type\":1,\"id\":9067,\"country\":\"IN\",\"sunrise\":1598402250,\"sunset\":1598447991},\"timezone\":19800,\"id\":1269743,\"name\":\"Indore\",\"cod\":200}', '2020-08-26 16:13:33.422397', '2020-08-26 16:13:33.422397', 50),
('delhi', NULL, '{\"coord\":{\"lon\":77.22,\"lat\":28.67},\"weather\":[{\"id\":721,\"main\":\"Haze\",\"description\":\"haze\",\"icon\":\"50d\"}],\"base\":\"stations\",\"main\":{\"temp\":306.23,\"feels_like\":309.86,\"temp_min\":305.15,\"temp_max\":307.15,\"pressure\":1003,\"humidity\":59},\"visibility\":4000,\"wind\":{\"speed\":3.1,\"deg\":240},\"clouds\":{\"all\":75},\"dt\":1598438499,\"sys\":{\"type\":1,\"id\":9161,\"country\":\"IN\",\"sunrise\":1598401582,\"sunset\":1598447992},\"timezone\":19800,\"id\":1273294,\"name\":\"Delhi\",\"cod\":200}', '2020-08-26 16:13:40.397573', '2020-08-26 16:13:40.397573', 51),
('indore', NULL, '{\"coord\":{\"lon\":75.83,\"lat\":22.72},\"weather\":[{\"id\":721,\"main\":\"Haze\",\"description\":\"haze\",\"icon\":\"50d\"}],\"base\":\"stations\",\"main\":{\"temp\":300.15,\"feels_like\":302.31,\"temp_min\":300.15,\"temp_max\":300.15,\"pressure\":1009,\"humidity\":74},\"visibility\":5000,\"wind\":{\"speed\":3.6,\"deg\":280},\"clouds\":{\"all\":75},\"dt\":1598438499,\"sys\":{\"type\":1,\"id\":9067,\"country\":\"IN\",\"sunrise\":1598402250,\"sunset\":1598447991},\"timezone\":19800,\"id\":1269743,\"name\":\"Indore\",\"cod\":200}', '2020-08-26 16:15:19.112091', '2020-08-26 16:15:19.112091', 52),
('indore', NULL, '{\"coord\":{\"lon\":75.83,\"lat\":22.72},\"weather\":[{\"id\":802,\"main\":\"Clouds\",\"description\":\"scattered clouds\",\"icon\":\"03d\"}],\"base\":\"stations\",\"main\":{\"temp\":305.15,\"feels_like\":308.9,\"temp_min\":305.15,\"temp_max\":305.15,\"pressure\":1010,\"humidity\":59},\"visibility\":6000,\"wind\":{\"speed\":2.1,\"deg\":230},\"clouds\":{\"all\":40},\"dt\":1599207142,\"sys\":{\"type\":1,\"id\":9067,\"country\":\"IN\",\"sunrise\":1599180019,\"sunset\":1599225088},\"timezone\":19800,\"id\":1269743,\"name\":\"Indore\",\"cod\":200}', '2020-09-04 13:42:50.655788', '2020-09-04 13:42:50.655788', 53),
('indore', NULL, '{\"coord\":{\"lon\":75.83,\"lat\":22.72},\"weather\":[{\"id\":802,\"main\":\"Clouds\",\"description\":\"scattered clouds\",\"icon\":\"03d\"}],\"base\":\"stations\",\"main\":{\"temp\":305.15,\"feels_like\":308.9,\"temp_min\":305.15,\"temp_max\":305.15,\"pressure\":1010,\"humidity\":59},\"visibility\":6000,\"wind\":{\"speed\":2.1,\"deg\":230},\"clouds\":{\"all\":40},\"dt\":1599207142,\"sys\":{\"type\":1,\"id\":9067,\"country\":\"IN\",\"sunrise\":1599180019,\"sunset\":1599225088},\"timezone\":19800,\"id\":1269743,\"name\":\"Indore\",\"cod\":200}', '2020-09-04 13:44:26.733246', '2020-09-04 13:44:26.733246', 54),
('indore', NULL, '{\"coord\":{\"lon\":75.83,\"lat\":22.72},\"weather\":[{\"id\":802,\"main\":\"Clouds\",\"description\":\"scattered clouds\",\"icon\":\"03d\"}],\"base\":\"stations\",\"main\":{\"temp\":305.15,\"feels_like\":308.9,\"temp_min\":305.15,\"temp_max\":305.15,\"pressure\":1010,\"humidity\":59},\"visibility\":6000,\"wind\":{\"speed\":2.1,\"deg\":230},\"clouds\":{\"all\":40},\"dt\":1599207142,\"sys\":{\"type\":1,\"id\":9067,\"country\":\"IN\",\"sunrise\":1599180019,\"sunset\":1599225088},\"timezone\":19800,\"id\":1269743,\"name\":\"Indore\",\"cod\":200}', '2020-09-04 13:46:18.889661', '2020-09-04 13:46:18.889661', 55),
('indore', NULL, '{\"coord\":{\"lon\":75.83,\"lat\":22.72},\"weather\":[{\"id\":802,\"main\":\"Clouds\",\"description\":\"scattered clouds\",\"icon\":\"03d\"}],\"base\":\"stations\",\"main\":{\"temp\":305.15,\"feels_like\":308.9,\"temp_min\":305.15,\"temp_max\":305.15,\"pressure\":1010,\"humidity\":59},\"visibility\":6000,\"wind\":{\"speed\":2.1,\"deg\":230},\"clouds\":{\"all\":40},\"dt\":1599207142,\"sys\":{\"type\":1,\"id\":9067,\"country\":\"IN\",\"sunrise\":1599180019,\"sunset\":1599225088},\"timezone\":19800,\"id\":1269743,\"name\":\"Indore\",\"cod\":200}', '2020-09-04 13:47:17.736435', '2020-09-04 13:47:17.736435', 56),
('indore', NULL, '{\"coord\":{\"lon\":75.83,\"lat\":22.72},\"weather\":[{\"id\":802,\"main\":\"Clouds\",\"description\":\"scattered clouds\",\"icon\":\"03d\"}],\"base\":\"stations\",\"main\":{\"temp\":305.15,\"feels_like\":308.9,\"temp_min\":305.15,\"temp_max\":305.15,\"pressure\":1010,\"humidity\":59},\"visibility\":6000,\"wind\":{\"speed\":2.1,\"deg\":230},\"clouds\":{\"all\":40},\"dt\":1599207142,\"sys\":{\"type\":1,\"id\":9067,\"country\":\"IN\",\"sunrise\":1599180019,\"sunset\":1599225088},\"timezone\":19800,\"id\":1269743,\"name\":\"Indore\",\"cod\":200}', '2020-09-04 13:47:43.575414', '2020-09-04 13:47:43.575414', 57),
('indore', NULL, '{\"coord\":{\"lon\":75.83,\"lat\":22.72},\"weather\":[{\"id\":802,\"main\":\"Clouds\",\"description\":\"scattered clouds\",\"icon\":\"03d\"}],\"base\":\"stations\",\"main\":{\"temp\":305.15,\"feels_like\":308.9,\"temp_min\":305.15,\"temp_max\":305.15,\"pressure\":1010,\"humidity\":59},\"visibility\":6000,\"wind\":{\"speed\":2.1,\"deg\":230},\"clouds\":{\"all\":40},\"dt\":1599207142,\"sys\":{\"type\":1,\"id\":9067,\"country\":\"IN\",\"sunrise\":1599180019,\"sunset\":1599225088},\"timezone\":19800,\"id\":1269743,\"name\":\"Indore\",\"cod\":200}', '2020-09-04 13:49:15.329091', '2020-09-04 13:49:15.329091', 58),
('indore', NULL, '{\"coord\":{\"lon\":75.83,\"lat\":22.72},\"weather\":[{\"id\":802,\"main\":\"Clouds\",\"description\":\"scattered clouds\",\"icon\":\"03d\"}],\"base\":\"stations\",\"main\":{\"temp\":305.15,\"feels_like\":308.9,\"temp_min\":305.15,\"temp_max\":305.15,\"pressure\":1010,\"humidity\":59},\"visibility\":6000,\"wind\":{\"speed\":2.1,\"deg\":230},\"clouds\":{\"all\":40},\"dt\":1599207142,\"sys\":{\"type\":1,\"id\":9067,\"country\":\"IN\",\"sunrise\":1599180019,\"sunset\":1599225088},\"timezone\":19800,\"id\":1269743,\"name\":\"Indore\",\"cod\":200}', '2020-09-04 13:49:48.253291', '2020-09-04 13:49:48.253291', 59),
('indore', NULL, '{\"coord\":{\"lon\":75.83,\"lat\":22.72},\"weather\":[{\"id\":802,\"main\":\"Clouds\",\"description\":\"scattered clouds\",\"icon\":\"03d\"}],\"base\":\"stations\",\"main\":{\"temp\":305.15,\"feels_like\":308.9,\"temp_min\":305.15,\"temp_max\":305.15,\"pressure\":1010,\"humidity\":59},\"visibility\":6000,\"wind\":{\"speed\":2.1,\"deg\":230},\"clouds\":{\"all\":40},\"dt\":1599207142,\"sys\":{\"type\":1,\"id\":9067,\"country\":\"IN\",\"sunrise\":1599180019,\"sunset\":1599225088},\"timezone\":19800,\"id\":1269743,\"name\":\"Indore\",\"cod\":200}', '2020-09-04 13:50:04.731050', '2020-09-04 13:50:04.731050', 60),
('indore', NULL, '{\"coord\":{\"lon\":75.83,\"lat\":22.72},\"weather\":[{\"id\":802,\"main\":\"Clouds\",\"description\":\"scattered clouds\",\"icon\":\"03d\"}],\"base\":\"stations\",\"main\":{\"temp\":305.15,\"feels_like\":308.9,\"temp_min\":305.15,\"temp_max\":305.15,\"pressure\":1010,\"humidity\":59},\"visibility\":6000,\"wind\":{\"speed\":2.1,\"deg\":230},\"clouds\":{\"all\":40},\"dt\":1599207142,\"sys\":{\"type\":1,\"id\":9067,\"country\":\"IN\",\"sunrise\":1599180019,\"sunset\":1599225088},\"timezone\":19800,\"id\":1269743,\"name\":\"Indore\",\"cod\":200}', '2020-09-04 13:50:16.551737', '2020-09-04 13:50:16.551737', 61),
('indore', NULL, '{\"coord\":{\"lon\":75.83,\"lat\":22.72},\"weather\":[{\"id\":802,\"main\":\"Clouds\",\"description\":\"scattered clouds\",\"icon\":\"03d\"}],\"base\":\"stations\",\"main\":{\"temp\":305.15,\"feels_like\":308.9,\"temp_min\":305.15,\"temp_max\":305.15,\"pressure\":1010,\"humidity\":59},\"visibility\":6000,\"wind\":{\"speed\":2.1,\"deg\":230},\"clouds\":{\"all\":40},\"dt\":1599207142,\"sys\":{\"type\":1,\"id\":9067,\"country\":\"IN\",\"sunrise\":1599180019,\"sunset\":1599225088},\"timezone\":19800,\"id\":1269743,\"name\":\"Indore\",\"cod\":200}', '2020-09-04 13:50:32.071165', '2020-09-04 13:50:32.071165', 62),
('indore', NULL, '{\"coord\":{\"lon\":75.83,\"lat\":22.72},\"weather\":[{\"id\":802,\"main\":\"Clouds\",\"description\":\"scattered clouds\",\"icon\":\"03d\"}],\"base\":\"stations\",\"main\":{\"temp\":305.15,\"feels_like\":308.9,\"temp_min\":305.15,\"temp_max\":305.15,\"pressure\":1010,\"humidity\":59},\"visibility\":6000,\"wind\":{\"speed\":2.1,\"deg\":230},\"clouds\":{\"all\":40},\"dt\":1599207142,\"sys\":{\"type\":1,\"id\":9067,\"country\":\"IN\",\"sunrise\":1599180019,\"sunset\":1599225088},\"timezone\":19800,\"id\":1269743,\"name\":\"Indore\",\"cod\":200}', '2020-09-04 13:51:03.129988', '2020-09-04 13:51:03.129988', 63),
('indore', NULL, '{\"coord\":{\"lon\":75.83,\"lat\":22.72},\"weather\":[{\"id\":802,\"main\":\"Clouds\",\"description\":\"scattered clouds\",\"icon\":\"03d\"}],\"base\":\"stations\",\"main\":{\"temp\":305.15,\"feels_like\":308.9,\"temp_min\":305.15,\"temp_max\":305.15,\"pressure\":1010,\"humidity\":59},\"visibility\":6000,\"wind\":{\"speed\":2.1,\"deg\":230},\"clouds\":{\"all\":40},\"dt\":1599207142,\"sys\":{\"type\":1,\"id\":9067,\"country\":\"IN\",\"sunrise\":1599180019,\"sunset\":1599225088},\"timezone\":19800,\"id\":1269743,\"name\":\"Indore\",\"cod\":200}', '2020-09-04 13:52:04.697869', '2020-09-04 13:52:04.697869', 64),
('indore', NULL, '{\"coord\":{\"lon\":75.83,\"lat\":22.72},\"weather\":[{\"id\":802,\"main\":\"Clouds\",\"description\":\"scattered clouds\",\"icon\":\"03d\"}],\"base\":\"stations\",\"main\":{\"temp\":305.15,\"feels_like\":308.23,\"temp_min\":305.15,\"temp_max\":305.15,\"pressure\":1010,\"humidity\":52},\"visibility\":6000,\"wind\":{\"speed\":1.5,\"deg\":250},\"clouds\":{\"all\":40},\"dt\":1599208091,\"sys\":{\"type\":1,\"id\":9067,\"country\":\"IN\",\"sunrise\":1599180019,\"sunset\":1599225088},\"timezone\":19800,\"id\":1269743,\"name\":\"Indore\",\"cod\":200}', '2020-09-04 13:58:39.667377', '2020-09-04 13:58:39.667377', 65),
('indore', NULL, '{\"coord\":{\"lon\":75.83,\"lat\":22.72},\"weather\":[{\"id\":802,\"main\":\"Clouds\",\"description\":\"scattered clouds\",\"icon\":\"03d\"}],\"base\":\"stations\",\"main\":{\"temp\":305.15,\"feels_like\":308.23,\"temp_min\":305.15,\"temp_max\":305.15,\"pressure\":1010,\"humidity\":52},\"visibility\":6000,\"wind\":{\"speed\":1.5,\"deg\":250},\"clouds\":{\"all\":40},\"dt\":1599208091,\"sys\":{\"type\":1,\"id\":9067,\"country\":\"IN\",\"sunrise\":1599180019,\"sunset\":1599225088},\"timezone\":19800,\"id\":1269743,\"name\":\"Indore\",\"cod\":200}', '2020-09-04 13:59:13.565679', '2020-09-04 13:59:13.565679', 66);
-- 2020-09-04 09:33:26