forked from Ashenn1/IncidentsCrowdsourcingSystem-GP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathincidentsdb.sql
610 lines (528 loc) · 42.1 KB
/
incidentsdb.sql
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
-- phpMyAdmin SQL Dump
-- version 4.6.6
-- https://www.phpmyadmin.net/
--
-- Host: localhost
-- Generation Time: May 30, 2019 at 02:19 PM
-- Server version: 5.7.20-log
-- PHP Version: 5.6.30
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `incidentsdb`
--
-- --------------------------------------------------------
--
-- Table structure for table `area`
--
DROP TABLE IF EXISTS `area`;
CREATE TABLE `area` (
`AreaId` int(11) NOT NULL,
`Area_name` varchar(70) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `area`
--
INSERT INTO `area` (`AreaId`, `Area_name`) VALUES
(1, 'Zamalek'),
(2, 'Al Haram'),
(3, 'Al Omraneyah');
-- --------------------------------------------------------
--
-- Table structure for table `department`
--
DROP TABLE IF EXISTS `department`;
CREATE TABLE `department` (
`DepartmentId` int(11) NOT NULL,
`Department_name` varchar(100) NOT NULL,
`Photo` blob NOT NULL,
`Authorization_username` varchar(70) NOT NULL,
`Authorization_password` varchar(70) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Table structure for table `extra_incident_photos`
--
DROP TABLE IF EXISTS `extra_incident_photos`;
CREATE TABLE `extra_incident_photos` (
`IncidentId` int(11) NOT NULL,
`Incident_photo` blob NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Table structure for table `incidents`
--
DROP TABLE IF EXISTS `incidents`;
CREATE TABLE `incidents` (
`IncidentId` int(11) NOT NULL,
`UserId` int(11) NOT NULL,
`Incident_name` varchar(100) NOT NULL,
`Description` text,
`Category` varchar(50) NOT NULL,
`Severity` enum('Urgent','High','Normal','Low') NOT NULL,
`Incident_datetime` datetime NOT NULL,
`Longitude` double NOT NULL,
`Latitude` double NOT NULL,
`AreaId` int(11) NOT NULL,
`Incident_photo` blob,
`Number_of_upvotes` int(11) NOT NULL,
`Number_of_downvotes` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `incidents`
--
INSERT INTO `incidents` (`IncidentId`, `UserId`, `Incident_name`, `Description`, `Category`, `Severity`, `Incident_datetime`, `Longitude`, `Latitude`, `AreaId`, `Incident_photo`, `Number_of_upvotes`, `Number_of_downvotes`) VALUES
(1, 32, 'Assault', NULL, 'Assault', 'High', '2019-12-05 12:39:16', 31.21909075986, 30.056582141259, 1, NULL, 7, 3),
(2, 5, 'Assault', NULL, 'Assault', 'Urgent', '2018-12-03 12:39:16', 31.126242183351, 30.017965481496, 2, NULL, 7, 10),
(3, 1, 'Dangerous Fogs in Highway', NULL, 'Dangerous Weather', 'Normal', '2019-03-03 07:37:40', 31.119047655478, 30.004672493205, 2, NULL, 5, 4),
(4, 7, 'Power Outage', NULL, 'Power Outage', 'Urgent', '2019-01-02 20:55:46', 31.117022101898, 30.011694134746, 2, NULL, 6, 4),
(5, 46, 'Too much Grabage Here', NULL, 'Grabage', 'Low', '2019-02-12 17:47:37', 31.161111032308, 30.000426141469, 3, NULL, 8, 2),
(6, 28, 'Too many unauthorized means of transportation', NULL, 'unauthorized means of transportation', 'Urgent', '2019-03-01 01:13:46', 31.218845700996, 30.056415069628, 1, NULL, 10, 6),
(7, 43, 'Harrasement', NULL, 'Harrasement', 'Low', '2019-02-06 01:02:14', 31.123900955443, 30.00458563618, 2, NULL, 1, 2),
(8, 63, 'Sewer Leakage', NULL, 'Sewer Leakage', 'Normal', '2019-03-22 09:07:29', 31.219232137596, 30.056510135808, 1, NULL, 9, 4),
(9, 53, 'Assault', NULL, 'Assault', 'Low', '2019-04-04 12:44:00', 31.171190321445, 29.994301533969, 3, NULL, 2, 7),
(10, 67, 'Too much Grabage Here', NULL, 'Grabage', 'Normal', '2019-03-14 09:24:11', 31.128212083605, 30.013186673849, 2, NULL, 2, 2),
(11, 55, 'Dangerous Fogs in Highway', NULL, 'Dangerous Weather', 'Urgent', '2019-04-25 08:06:23', 31.169106070066, 29.998033288584, 3, NULL, 9, 2),
(12, 14, 'Too many unauthorized means of transportation', NULL, 'unauthorized means of transportation', 'Low', '2019-04-01 19:08:58', 31.159010827491, 29.993883808919, 3, NULL, 2, 6),
(13, 26, 'Missing Pet', NULL, 'Missing Pet', 'Urgent', '2019-01-18 05:36:38', 31.218928926245, 30.056583380312, 1, NULL, 10, 6),
(14, 59, 'Missing Person', NULL, 'Missing Person', 'Urgent', '2019-01-05 22:24:58', 31.219184856006, 30.056312976639, 1, NULL, 7, 7),
(15, 26, 'Missing Pet', NULL, 'Missing Pet', 'Urgent', '2019-01-17 23:32:36', 31.219010213393, 30.056581991315, 1, NULL, 9, 9),
(16, 51, 'Building is on Fire! , Beware', NULL, 'Fire', 'Urgent', '2019-01-07 00:58:38', 31.172579580879, 29.995268010215, 3, NULL, 9, 6),
(17, 59, 'Building is on Fire! , Beware', NULL, 'Fire', 'Normal', '2019-02-14 20:08:57', 31.219074154337, 30.056717316915, 1, NULL, 1, 9),
(18, 45, 'Harrasement', NULL, 'Harrasement', 'High', '2019-03-11 15:33:00', 31.121988161743, 30.006805271061, 2, NULL, 3, 6),
(19, 66, 'Too many unauthorized means of transportation', NULL, 'unauthorized means of transportation', 'High', '2019-04-22 03:37:23', 31.170613857895, 29.989172594178, 3, NULL, 9, 5),
(20, 65, 'Robbery, be alert!', NULL, 'Robbery', 'Urgent', '2019-01-23 06:46:21', 31.219259585919, 30.056683394635, 1, NULL, 2, 1),
(21, 30, 'Sewer Leakage', NULL, 'Sewer Leakage', 'High', '2019-04-08 21:31:44', 31.11615511947, 30.007823378394, 2, NULL, 9, 8),
(22, 52, 'Power Outage', NULL, 'Power Outage', 'Urgent', '2019-01-29 21:15:39', 31.161223558908, 29.993923989349, 3, NULL, 2, 10),
(23, 63, 'Missing Pet', NULL, 'Missing Pet', 'Low', '2019-03-05 02:44:34', 31.161070098794, 29.987724444514, 3, NULL, 2, 6),
(24, 25, 'Water Outage', NULL, 'Water Outage', 'High', '2019-01-20 01:06:34', 31.126344968712, 30.010265696602, 2, NULL, 2, 7),
(25, 30, 'theft', NULL, 'theft', 'Normal', '2019-01-16 17:38:30', 31.114482339454, 30.009342285435, 2, NULL, 5, 9),
(26, 26, 'Power Outage', NULL, 'Power Outage', 'High', '2019-01-20 11:42:09', 31.128699742057, 30.00676078701, 2, NULL, 2, 3),
(27, 47, 'Building is on Fire! , Beware', NULL, 'Fire', 'High', '2019-02-21 22:33:19', 31.21903953191, 30.056470461632, 1, NULL, 9, 3),
(28, 32, 'Power Outage', NULL, 'Power Outage', 'Low', '2019-01-23 13:24:16', 31.124323315538, 30.016557511735, 2, NULL, 9, 2),
(29, 51, 'Sewer Leakage', NULL, 'Sewer Leakage', 'Urgent', '2019-01-15 20:15:26', 31.218932108244, 30.056396168469, 1, NULL, 6, 9),
(30, 23, 'Too much Grabage Here', NULL, 'Grabage', 'Urgent', '2019-01-12 14:14:08', 31.16191863518, 29.991157590348, 3, NULL, 2, 10),
(31, 6, 'Water Outage', NULL, 'Water Outage', 'Urgent', '2019-01-30 00:52:10', 31.163892590879, 29.986859338802, 3, NULL, 6, 1),
(32, 20, 'Too much Grabage Here', NULL, 'Grabage', 'High', '2019-01-21 22:18:43', 31.219298511682, 30.056552475831, 1, NULL, 9, 8),
(33, 69, 'Water Outage', NULL, 'Water Outage', 'Low', '2019-02-28 07:11:17', 31.122634942704, 30.008048660084, 2, NULL, 10, 5),
(34, 1, 'Missing Person', NULL, 'Missing Person', 'Normal', '2019-04-03 09:02:29', 31.126000425029, 30.009430787184, 2, NULL, 2, 10),
(35, 31, 'theft', NULL, 'theft', 'Normal', '2019-01-03 03:46:06', 31.116642978042, 30.004374646105, 2, NULL, 2, 8),
(36, 26, 'theft', NULL, 'theft', 'Urgent', '2019-02-06 15:31:00', 31.169547227615, 29.997876730999, 3, NULL, 6, 6),
(37, 38, 'Missing Pet', NULL, 'Missing Pet', 'Urgent', '2019-04-06 07:34:17', 31.122383361659, 30.009375618, 2, NULL, 6, 3),
(38, 47, 'Water Outage', NULL, 'Water Outage', 'Normal', '2019-03-18 11:35:38', 31.169249558471, 29.996837015179, 3, NULL, 6, 1),
(39, 2, 'Sewer Leakage', NULL, 'Sewer Leakage', 'High', '2019-01-14 16:15:53', 31.163416704385, 29.997451587731, 3, NULL, 4, 6),
(40, 2, 'Building is on Fire! , Beware', NULL, 'Fire', 'Low', '2019-03-12 04:02:19', 31.164359783694, 29.985421067737, 3, NULL, 6, 7),
(41, 65, 'Harrasement', NULL, 'Harrasement', 'Low', '2019-03-29 10:38:58', 31.117677640337, 30.012345433958, 2, NULL, 4, 6),
(42, 10, 'Dangerous Fogs in Highway', NULL, 'Dangerous Weather', 'High', '2019-01-27 02:30:29', 31.163007064732, 29.989620101768, 3, NULL, 7, 7),
(43, 28, 'Dangerous Fogs in Highway', NULL, 'Dangerous Weather', 'Low', '2019-03-13 03:38:22', 31.1217844912, 30.012580821857, 2, NULL, 2, 8),
(44, 48, 'Sewer Leakage', NULL, 'Sewer Leakage', 'High', '2019-04-27 11:45:00', 31.219102253971, 30.056674088239, 1, NULL, 3, 8),
(45, 30, 'Dangerous Fogs in Highway', NULL, 'Dangerous Weather', 'High', '2019-04-30 18:13:04', 31.218882924542, 30.056363525044, 1, NULL, 5, 7),
(46, 1, 'Missing Person', NULL, 'Missing Person', 'Normal', '2019-01-28 21:07:56', 31.122606834795, 30.00797737902, 2, NULL, 10, 1),
(47, 35, 'Harrasement', NULL, 'Harrasement', 'High', '2019-03-29 09:36:33', 31.219208841745, 30.056618581423, 1, NULL, 1, 3),
(48, 32, 'Water Outage', NULL, 'Water Outage', 'High', '2019-01-30 03:57:15', 31.123989909651, 30.013808004352, 2, NULL, 4, 2),
(49, 45, 'Too many unauthorized means of transportation', NULL, 'unauthorized means of transportation', 'Low', '2019-02-21 11:22:42', 31.219172327436, 30.056364791184, 1, NULL, 1, 2),
(50, 61, 'theft', NULL, 'theft', 'Normal', '2019-02-24 22:31:21', 31.21933893409, 30.056439593011, 1, NULL, 8, 2),
(51, 12, 'Missing Person', NULL, 'Missing Person', 'Normal', '2019-01-09 13:45:21', 31.119488993606, 30.01806502838, 2, NULL, 9, 5),
(52, 48, 'theft', NULL, 'theft', 'Urgent', '2019-01-18 01:26:03', 31.129215396992, 30.014805124539, 2, NULL, 2, 4),
(53, 13, 'Missing Person', NULL, 'Missing Person', 'Normal', '2019-03-31 05:02:12', 31.219352124667, 30.056451978859, 1, NULL, 4, 10),
(54, 7, 'Power Outage', NULL, 'Power Outage', 'High', '2019-03-22 19:15:15', 31.124632553313, 30.006115134781, 2, NULL, 1, 10),
(55, 30, 'Too many unauthorized means of transportation', NULL, 'unauthorized means of transportation', 'Normal', '2019-04-21 21:22:28', 31.17409072182, 29.99865985179, 3, NULL, 9, 2),
(56, 19, 'Too much Grabage Here', NULL, 'Grabage', 'High', '2019-02-04 16:23:56', 31.167091359559, 29.99805638215, 3, NULL, 7, 4),
(57, 65, 'Missing Pet', NULL, 'Missing Pet', 'Low', '2019-02-24 20:11:32', 31.12677494767, 30.013142900044, 2, NULL, 7, 3),
(58, 11, 'Power Outage', NULL, 'Power Outage', 'High', '2019-01-09 19:58:22', 31.121571385395, 30.013318814048, 2, NULL, 8, 1),
(59, 57, 'Too much Grabage Here', NULL, 'Grabage', 'Urgent', '2019-01-07 15:30:00', 31.162483753074, 30.00155464928, 3, NULL, 3, 2),
(60, 14, 'Too many unauthorized means of transportation', NULL, 'unauthorized means of transportation', 'Urgent', '2019-04-14 02:02:53', 31.219210438289, 30.056678557638, 1, NULL, 9, 8),
(61, 3, 'Sewer Leakage', NULL, 'Sewer Leakage', 'Low', '2019-02-08 19:06:53', 31.167284784188, 29.994598414426, 3, NULL, 2, 10),
(62, 13, 'Water Outage', NULL, 'Water Outage', 'Urgent', '2019-01-27 16:52:07', 31.12268602488, 30.018964082563, 2, NULL, 3, 7),
(63, 65, 'Robbery, be alert!', NULL, 'Robbery', 'Low', '2019-01-29 07:22:30', 31.161292232803, 29.994859284629, 3, NULL, 8, 5),
(64, 69, 'Missing Person', NULL, 'Missing Person', 'Urgent', '2019-03-20 19:11:48', 31.169222031379, 29.985840680936, 3, NULL, 7, 1),
(65, 10, 'Power Outage', NULL, 'Power Outage', 'Low', '2019-02-03 00:27:48', 31.128902127253, 30.009270877943, 2, NULL, 6, 2),
(66, 46, 'Robbery, be alert!', NULL, 'Robbery', 'Low', '2019-02-14 17:01:11', 31.160903580862, 29.989783006085, 3, NULL, 9, 8),
(67, 49, 'Robbery, be alert!', NULL, 'Robbery', 'High', '2019-03-31 02:07:22', 31.123509958336, 30.008190074308, 2, NULL, 1, 10),
(68, 62, 'theft', NULL, 'theft', 'Normal', '2019-03-27 13:59:15', 31.219087871878, 30.056541358818, 1, NULL, 5, 5),
(69, 42, 'Robbery, be alert!', NULL, 'Robbery', 'Normal', '2019-02-27 21:11:06', 31.219120559006, 30.056358746155, 1, NULL, 9, 10),
(70, 34, 'Water Outage', NULL, 'Water Outage', 'Normal', '2019-01-17 01:40:58', 31.121376101553, 30.015156158067, 2, NULL, 6, 1),
(71, 6, 'Robbery, be alert!', NULL, 'Robbery', 'Low', '2019-01-21 16:40:41', 31.119233579775, 30.003792656945, 2, NULL, 4, 5),
(72, 54, 'Too many unauthorized means of transportation', NULL, 'unauthorized means of transportation', 'Low', '2019-03-12 02:35:03', 31.218933902938, 30.056678864123, 1, NULL, 5, 5),
(73, 65, 'Dangerous Fogs in Highway', NULL, 'Dangerous Weather', 'Low', '2019-02-28 15:27:22', 31.169781126944, 29.996993761151, 3, NULL, 5, 1),
(74, 19, 'Harrasement', NULL, 'Harrasement', 'Urgent', '2019-04-26 15:36:17', 31.166500084625, 29.993429604436, 3, NULL, 8, 2),
(75, 41, 'Sewer Leakage', NULL, 'Sewer Leakage', 'Low', '2019-03-11 21:43:05', 31.165317655943, 29.998384980998, 3, NULL, 2, 9),
(76, 52, 'Too much Grabage Here', NULL, 'Grabage', 'Normal', '2019-03-12 01:08:39', 31.170127763277, 30.000640847636, 3, NULL, 4, 1),
(77, 55, 'Harrasement', NULL, 'Harrasement', 'Low', '2019-04-07 04:25:58', 31.165366308801, 30.00122550034, 3, NULL, 4, 10),
(78, 63, 'Robbery, be alert!', NULL, 'Robbery', 'High', '2019-03-16 04:48:32', 31.219217994837, 30.056457412385, 1, NULL, 10, 6),
(79, 26, 'Stray Dogs', NULL, 'Stray Dogs', 'Urgent', '2019-02-06 12:24:05', 31.168279065913, 29.997965653174, 3, NULL, 6, 4),
(80, 53, 'theft', NULL, 'theft', 'High', '2019-01-07 16:56:39', 31.219170937205, 30.056739678291, 1, NULL, 2, 2),
(81, 47, 'Assault', NULL, 'Assault', 'Normal', '2019-02-26 20:48:48', 31.219249542679, 30.056273346357, 1, NULL, 6, 1),
(82, 18, 'Missing Person', NULL, 'Missing Person', 'Low', '2019-04-16 00:20:02', 31.120233821332, 30.017125028545, 2, NULL, 4, 1),
(83, 67, 'theft', NULL, 'theft', 'Normal', '2019-01-20 14:31:56', 31.164914438307, 30.002348455338, 3, NULL, 4, 8),
(84, 18, 'Assault', NULL, 'Assault', 'High', '2019-04-20 18:32:29', 31.1151772042, 30.007359785903, 2, NULL, 6, 3),
(85, 12, 'Water Outage', NULL, 'Water Outage', 'Normal', '2019-04-08 09:49:35', 31.219108903743, 30.056593043232, 1, NULL, 4, 8),
(86, 46, 'Power Outage', NULL, 'Power Outage', 'Low', '2019-04-02 04:02:59', 31.116829964664, 30.018052290169, 2, NULL, 10, 6),
(87, 12, 'Too many unauthorized means of transportation', NULL, 'unauthorized means of transportation', 'Low', '2019-04-13 07:21:34', 31.116843856698, 30.013475060065, 2, NULL, 4, 3),
(88, 56, 'Building is on Fire! , Beware', NULL, 'Fire', 'Low', '2019-04-29 03:36:44', 31.120092004653, 30.019150831041, 2, NULL, 8, 9),
(89, 39, 'Harrasement', NULL, 'Harrasement', 'Urgent', '2019-02-13 00:56:01', 31.219166294792, 30.056510960566, 1, NULL, 10, 5),
(90, 58, 'Water Outage', NULL, 'Water Outage', 'Normal', '2019-02-10 05:45:54', 31.219111386976, 30.056236943463, 1, NULL, 3, 10),
(91, 27, 'Robbery, be alert!', NULL, 'Robbery', 'Low', '2019-03-02 23:43:27', 31.173963439257, 29.991754977904, 3, NULL, 6, 8),
(92, 3, 'Too many unauthorized means of transportation', NULL, 'unauthorized means of transportation', 'Low', '2019-02-03 02:29:15', 31.219288617631, 30.056381292037, 1, NULL, 9, 6),
(93, 12, 'Assault', NULL, 'Assault', 'Urgent', '2019-03-23 23:02:49', 31.12131770149, 30.010518121432, 2, NULL, 9, 6),
(94, 4, 'Robbery, be alert!', NULL, 'Robbery', 'Urgent', '2019-03-07 10:54:05', 31.21932096033, 30.056412801733, 1, NULL, 10, 10),
(95, 64, 'Too many unauthorized means of transportation', NULL, 'unauthorized means of transportation', 'Low', '2019-02-24 21:15:51', 31.164122607636, 29.992577334675, 3, NULL, 6, 2),
(96, 50, 'Building is on Fire! , Beware', NULL, 'Fire', 'High', '2019-04-27 20:15:11', 31.165065746536, 30.00093503793, 3, NULL, 3, 9),
(97, 51, 'Too much Grabage Here', NULL, 'Grabage', 'Normal', '2019-03-25 01:29:43', 31.125230283413, 30.01158393024, 2, NULL, 2, 3),
(98, 9, 'Dangerous Fogs in Highway', NULL, 'Dangerous Weather', 'High', '2019-04-27 09:10:04', 31.219134835365, 30.056594846674, 1, NULL, 7, 3),
(99, 12, 'Too much Grabage Here', NULL, 'Grabage', 'Normal', '2019-01-26 18:31:56', 31.121100456739, 30.018737475403, 2, NULL, 6, 3),
(100, 55, 'Assault', NULL, 'Assault', 'Normal', '2019-03-06 16:20:55', 31.167118504565, 29.987393673522, 3, NULL, 6, 10),
(101, 26, 'Too much Grabage Here', NULL, 'Grabage', 'Urgent', '2019-01-13 00:19:08', 31.21888012628, 30.056519737011, 1, NULL, 7, 3),
(102, 68, 'Dangerous Fogs in Highway', NULL, 'Dangerous Weather', 'Low', '2019-03-14 11:58:54', 31.16315406799, 29.995722751232, 3, NULL, 2, 4),
(103, 12, 'Missing Pet', NULL, 'Missing Pet', 'Low', '2019-01-29 11:52:53', 31.113054645914, 30.011285508947, 2, NULL, 9, 8),
(104, 42, 'Water Outage', NULL, 'Water Outage', 'Urgent', '2019-01-31 16:06:19', 31.114653664757, 30.012441958082, 2, NULL, 7, 10),
(105, 18, 'Missing Pet', NULL, 'Missing Pet', 'High', '2019-03-23 18:01:44', 31.219288934498, 30.056629620182, 1, NULL, 4, 8),
(106, 66, 'Missing Person', NULL, 'Missing Person', 'Normal', '2019-03-19 14:29:43', 31.173183110395, 29.997074529924, 3, NULL, 7, 8),
(107, 40, 'theft', NULL, 'theft', 'High', '2019-04-09 00:33:12', 31.166083554009, 29.98679998312, 3, NULL, 5, 3),
(108, 68, 'Sewer Leakage', NULL, 'Sewer Leakage', 'Urgent', '2019-04-06 05:37:29', 31.219040651869, 30.056751148883, 1, NULL, 10, 6),
(109, 66, 'Dangerous Fogs in Highway', NULL, 'Dangerous Weather', 'Low', '2019-03-27 10:15:02', 31.125482000849, 30.018647260082, 2, NULL, 1, 6),
(110, 10, 'Missing Person', NULL, 'Missing Person', 'Low', '2019-03-14 07:27:31', 31.161586726333, 29.993890784458, 3, NULL, 1, 1),
(111, 22, 'Harrasement', NULL, 'Harrasement', 'Normal', '2019-02-01 18:50:02', 31.219158050588, 30.056714712049, 1, NULL, 5, 10),
(112, 42, 'Water Outage', NULL, 'Water Outage', 'Urgent', '2019-04-22 00:33:32', 31.125188781462, 30.017180408354, 2, NULL, 5, 2),
(113, 3, 'Power Outage', NULL, 'Power Outage', 'Normal', '2019-01-31 17:19:40', 31.21910201442, 30.056516520731, 1, NULL, 5, 2),
(114, 39, 'Harrasement', NULL, 'Harrasement', 'Normal', '2019-03-31 03:33:28', 31.126564787481, 30.012353817899, 2, NULL, 2, 3),
(115, 11, 'Sewer Leakage', NULL, 'Sewer Leakage', 'Normal', '2019-01-23 12:52:02', 31.12571860617, 30.011740570484, 2, NULL, 10, 5),
(116, 50, 'Robbery, be alert!', NULL, 'Robbery', 'Normal', '2019-02-27 09:20:51', 31.219081740521, 30.056505771027, 1, NULL, 1, 6),
(117, 42, 'Power Outage', NULL, 'Power Outage', 'Urgent', '2019-01-22 11:35:49', 31.219147440494, 30.056563700254, 1, NULL, 6, 3),
(118, 30, 'theft', NULL, 'theft', 'Urgent', '2019-04-26 14:27:19', 31.118257153751, 30.010881233229, 2, NULL, 5, 10),
(119, 50, 'Robbery, be alert!', NULL, 'Robbery', 'High', '2019-03-25 04:38:58', 31.113989315721, 30.014869359603, 2, NULL, 8, 6),
(120, 56, 'Stray Dogs', NULL, 'Stray Dogs', 'Normal', '2019-03-09 21:11:08', 31.114689218587, 30.008636327444, 2, NULL, 4, 10),
(121, 35, 'Robbery, be alert!', NULL, 'Robbery', 'Normal', '2019-03-19 13:27:09', 31.166691050048, 29.985475776137, 3, NULL, 5, 8),
(122, 59, 'Dangerous Fogs in Highway', NULL, 'Dangerous Weather', 'Urgent', '2019-03-29 17:06:16', 31.112902963546, 30.010325248864, 2, NULL, 9, 10),
(123, 14, 'Water Outage', NULL, 'Water Outage', 'High', '2019-02-22 19:37:40', 31.117292130774, 30.007320239291, 2, NULL, 3, 8),
(124, 57, 'theft', NULL, 'theft', 'Low', '2019-04-21 12:01:09', 31.166773124869, 29.985702442629, 3, NULL, 7, 7),
(125, 29, 'Robbery, be alert!', NULL, 'Robbery', 'Urgent', '2019-02-08 09:42:43', 31.164893550823, 29.989998753065, 3, NULL, 9, 7),
(126, 14, 'Sewer Leakage', NULL, 'Sewer Leakage', 'High', '2019-03-20 14:47:06', 31.120820484165, 30.01863746901, 2, NULL, 8, 7),
(127, 62, 'Robbery, be alert!', NULL, 'Robbery', 'Urgent', '2019-02-24 23:48:40', 31.126647812354, 30.011957565496, 2, NULL, 1, 4),
(128, 49, 'Water Outage', NULL, 'Water Outage', 'Normal', '2019-02-04 03:52:48', 31.122580617693, 30.005116327026, 2, NULL, 7, 1),
(129, 40, 'Missing Pet', NULL, 'Missing Pet', 'Low', '2019-04-24 22:57:45', 31.124052557308, 30.005622514565, 2, NULL, 2, 2),
(130, 40, 'Water Outage', NULL, 'Water Outage', 'Urgent', '2019-02-20 05:07:31', 31.127791077781, 30.011262771098, 2, NULL, 2, 6),
(131, 23, 'Robbery, be alert!', NULL, 'Robbery', 'Low', '2019-03-31 20:24:53', 31.219205453138, 30.056518520382, 1, NULL, 2, 3),
(132, 19, 'Assault', NULL, 'Assault', 'Normal', '2019-01-24 07:23:13', 31.121746918856, 30.012397378149, 2, NULL, 6, 5),
(133, 39, 'Too much Grabage Here', NULL, 'Grabage', 'Low', '2019-03-08 12:03:04', 31.218882597448, 30.05635708284, 1, NULL, 10, 4),
(134, 48, 'Too many unauthorized means of transportation', NULL, 'unauthorized means of transportation', 'Low', '2019-04-02 10:53:49', 31.219204421393, 30.056247268192, 1, NULL, 10, 9),
(135, 41, 'Harrasement', NULL, 'Harrasement', 'Urgent', '2019-02-02 05:03:37', 31.119073205302, 30.014742118137, 2, NULL, 2, 5),
(136, 5, 'theft', NULL, 'theft', 'Low', '2019-03-30 07:32:43', 31.161890460731, 29.994487770644, 3, NULL, 8, 5),
(137, 36, 'Robbery, be alert!', NULL, 'Robbery', 'Low', '2019-04-13 02:11:18', 31.159783288854, 29.991637791463, 3, NULL, 5, 2),
(138, 64, 'Too many unauthorized means of transportation', NULL, 'unauthorized means of transportation', 'High', '2019-02-28 15:47:45', 31.119257208012, 30.012341675727, 2, NULL, 5, 10),
(139, 21, 'Too many unauthorized means of transportation', NULL, 'unauthorized means of transportation', 'Normal', '2019-03-19 12:34:21', 31.167613226615, 29.994656031123, 3, NULL, 9, 10),
(140, 14, 'theft', NULL, 'theft', 'Normal', '2019-02-26 02:06:33', 31.160160235361, 29.997681438856, 3, NULL, 10, 1),
(141, 21, 'Building is on Fire! , Beware', NULL, 'Fire', 'Low', '2019-02-07 02:32:30', 31.219360053796, 30.056571442242, 1, NULL, 1, 6),
(142, 40, 'Harrasement', NULL, 'Harrasement', 'High', '2019-02-09 22:10:49', 31.175548029677, 29.994464121948, 3, NULL, 6, 5),
(143, 13, 'Too many unauthorized means of transportation', NULL, 'unauthorized means of transportation', 'Urgent', '2019-02-01 11:59:47', 31.218899827557, 30.056365657989, 1, NULL, 4, 3);
-- --------------------------------------------------------
--
-- Table structure for table `incident_warnings`
--
DROP TABLE IF EXISTS `incident_warnings`;
CREATE TABLE `incident_warnings` (
`IncidentWarningId` int(11) NOT NULL,
`DepartmentId` int(11) NOT NULL,
`IncidentDetails` text NOT NULL,
`Category` varchar(70) NOT NULL,
`Incident_datetime` datetime NOT NULL,
`AreaId` int(11) NOT NULL,
`Longitude` double NOT NULL,
`Latitiude` double NOT NULL,
`Severity` enum('Urgent','High','Normal','Low') NOT NULL,
`Incident_warning_headline` varchar(70) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Table structure for table `notifications`
--
DROP TABLE IF EXISTS `notifications`;
CREATE TABLE `notifications` (
`NotificationId` int(11) NOT NULL,
`Type` varchar(70) NOT NULL,
`Notifcation_message` text NOT NULL,
`Notification_datetime` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Table structure for table `organization_in_area`
--
DROP TABLE IF EXISTS `organization_in_area`;
CREATE TABLE `organization_in_area` (
`OrganizationId` int(11) NOT NULL,
`Organization_name` varchar(50) NOT NULL,
`Organization_Description` text NOT NULL,
`Help_category` varchar(100) NOT NULL,
`Organization_area` varchar(100) NOT NULL,
`AreaId` int(11) NOT NULL,
`Organization_longitude` double NOT NULL,
`Organization_latitiude` double NOT NULL,
`Organization_email` varchar(100) NOT NULL,
`Organization_phone_contact` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Table structure for table `user`
--
DROP TABLE IF EXISTS `user`;
CREATE TABLE `user` (
`UserId` int(11) NOT NULL,
`Username` varchar(30) NOT NULL,
`Email` varchar(30) NOT NULL,
`Password` varchar(30) NOT NULL,
`User_photo` blob NOT NULL,
`Home_address` text NOT NULL,
`Longitude` double NOT NULL,
`Latitude` double NOT NULL,
`Rating` float NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Dumping data for table `user`
--
INSERT INTO `user` (`UserId`, `Username`, `Email`, `Password`, `User_photo`, `Home_address`, `Longitude`, `Latitude`, `Rating`) VALUES
(1, 'mjollye0', '[email protected]', 'JKqF9Aug2K5', '', '4 Mohammed Abd El-Wahab Omar Al Khayam Zamalek Giza Governorate', 31.2242735, 30.0536882, 0),
(2, 'eburgen1', '[email protected]', '6Zq1fw', '', '24 Al Gezera Omar Al Khayam Zamalek Giza Governorate', 31.2177074, 30.0537111, 0),
(3, 'oantognetti2', '[email protected]', '6iBZz2Wj', '', '3 Meshel Lotf Allah Omar Al Khayam Zamalek Cairo Governorate', 31.2217122, 30.0582578, 0),
(4, 'mreignould3', '[email protected]', 'S3uZyRbXE', '', '6 Kamal Al Tawil Mohammed Mazhar Zamalek Giza Governorate', 31.2202485, 30.0694507, 0),
(5, 'ktaks4', '[email protected]', 'vkbLuOQ', '', '20 Kamal Al Tawil Mohammed Mazhar Zamalek Giza Governorate', 31.2203854, 30.0713422, 0),
(6, 'msalmond5', '[email protected]', 'Pp5QScHHs1', '', '35 Al Gazira Al WSTA Mohammed Mazhar Zamalek Giza Governorate', 31.2182806, 30.0712678, 0),
(7, 'lsaddington6', '[email protected]', '2gwPKp', '', '19 Abou Al Fada Abu Al Feda Zamalek Giza Governorate', 31.2145237, 30.0672182, 0),
(8, 'hoglethorpe7', '[email protected]', 'kZvedNNH5JlZ', '', '3 Bahgat Ali Abu Al Feda Zamalek Giza Governorate', 31.214932, 30.0654888, 0),
(9, 'kboame8', '[email protected]', 'LRzGjGPxV', '', '23 Ibn Zanikai Al Gabalayah Zamalek Giza Governorate', 31.2146803, 30.0610634, 0),
(10, 'ckillen9', '[email protected]', 'Tlfu0agH', '', '4 Shagaret Al Dor Al Gabalayah Zamalek Giza Governorate', 31.2152393, 30.0595556, 0),
(11, 'bmcgaugana', '[email protected]', 'p07wP3W2m6o', '', '2 Al Kamel Mohammed Al Gabalayah Zamalek Giza Governorate', 31.2164644, 30.0578133, 0),
(12, 'kbedboroughb', '[email protected]', '0PVPjBqLR2', '', 'Bahaa El-Deen Qaraqosh Al Gabalayah Zamalek Giza Governorate', 31.2175864, 30.0569278, 0),
(13, 'tfenningc', '[email protected]', 'gtXntpzW', '', '14 Hassan Sabry St Omar Al Khayam Zamalek Giza Governorate', 31.2182534, 30.057587, 0),
(14, 'obrattelld', '[email protected]', 'rh6Tu6gCC8pe', '', '6 Al Kamel Mohammed Al Gabalayah Zamalek Giza Governorate', 31.2172577, 30.0590799, 0),
(15, 'mwhisbye', '[email protected]', 'UiCmJKGOI', '', '6 Salah El-Deen Al Gabalayah Zamalek Giza Governorate', 31.2173848, 30.058354, 0),
(16, 'fharmesf', '[email protected]', 'nJIRuBx', '', '12 Mohammed Abd El-Wahab Omar Al Khayam Zamalek Giza Governorate', 31.2240052, 30.0544086, 0),
(17, 'hcustyg', '[email protected]', 'JM6cgXC0', '', '12 Ahmed El-Kashef Omar Al Khayam Zamalek Giza Governorate', 31.2202932, 30.0563997, 0),
(18, 'imattecoth', '[email protected]', '9Ju5a4TXGcp', '', '10 Ahmed El-Kashef Omar Al Khayam Zamalek Giza Governorate', 31.2199801, 30.0564413, 0),
(19, 'jgrossi', '[email protected]', 'NfyhKJjv', '', '3 Al Shahid Eshak Yagoob Omar Al Khayam Zamalek Giza Governorate', 31.2213975, 30.0585885, 0),
(20, 'mshrubsallj', '[email protected]', 'CXFzdag', '', 'Yehia Ibrahim Mohammed Mazhar Zamalek Cairo Governorate', 31.2211922, 30.0605585, 0),
(21, 'mslayk', '[email protected]', 'Fg1Z7TJ', '', '3 Brazil St Mohammed Mazhar Zamalek Cairo Governorate', 31.2202237, 30.060679, 0),
(22, 'edewil', '[email protected]', 'obakHZa', '', '6 Ahmed Sabry Mohammed Mazhar Zamalek Giza Governorate', 31.2190856, 30.0616323, 0),
(23, 'xbrierleym', '[email protected]', 'GFYcqKz', '', '14 El-Saleh Ayoub Al Gabalayah Zamalek Giza Governorate', 31.217006, 30.0607367, 0),
(24, 'nbrowettn', '[email protected]', 'zRm0IdNM5npV', '', '11 Shagaret Al Dor Al Gabalayah Zamalek Giza Governorate', 31.2164916, 30.0609327, 0),
(25, 'ucorradettio', '[email protected]', 'afOZzGpm', '', '8 El-Mansour Mohammed Al Gabalayah Zamalek Giza Governorate', 31.2151499, 30.061204, 0),
(26, 'iyurinp', '[email protected]', 'YwKavaGfs8f9', '', '22 Ibn Zanikai Al Gabalayah Zamalek Giza Governorate', 31.2147474, 30.0606192, 0),
(27, 'glinnitq', '[email protected]', '29sq8gvQTIed', '', '23 Salah El-Deen Al Gabalayah Zamalek Giza Governorate', 31.214971, 30.0597074, 0),
(28, 'truzicr', '[email protected]', 'CD95TvPMQg', '', '5 Bahaa El-Deen Qaraqosh Al Gabalayah Zamalek Giza Governorate', 31.2169486, 30.0573756, 0),
(29, 'dsmithens', '[email protected]', 'XS8jUL', '', '2 El-Aziz Othman Al Gabalayah Zamalek Giza Governorate', 31.2175042, 30.0576147, 0),
(30, 'drenfieldt', '[email protected]', 'LfekFuKMENs', '', '14 Al Sheikh Al Marsafi Omar Al Khayam Zamalek Giza Governorate', 31.2205168, 30.0564628, 0),
(31, 'awignallu', '[email protected]', 'LdmMosY8eu', '', '4 Ahmed El-Kashef Omar Al Khayam Zamalek Giza Governorate', 31.2202866, 30.0565991, 0),
(32, 'tadessv', '[email protected]', 'D2zRo2HNPL', '', '3 Mahmoud Azmy Omar Al Khayam Zamalek Giza Governorate', 31.220159, 30.0573692, 0),
(33, 'ykilnerw', '[email protected]', 'Lrrictl8y8qo', '', '4 Omarat Aliamni Omar Al Khayam Zamalek Cairo Governorate', 31.2217006, 30.0577369, 0),
(34, 'hhumbeyx', '[email protected]', 'Ilb5UDw9zK', '', 'Zaki Ali Omar Al Khayam Zamalek Giza Governorate', 31.2222278, 30.0588963, 0),
(35, 'vbrimfieldy', '[email protected]', 'aOEnaK', '', 'Aziz Abaza Mohammed Mazhar Zamalek Giza Governorate', 31.2234841, 30.0596489, 0),
(36, 'rdonovanz', '[email protected]', 'L2huTKMZAD', '', '300 Al Haram, At Talbeyah Al Qebleyah, Al Omraneyah, Giza Governorate', 31.1735283, 29.9994864, 0),
(37, 'meves10', '[email protected]', 'uUsLk9A', '', '432 King Faisal St Oula Al Haram Al Omraneyah Giza Governorate', 31.1741211, 30.000581, 0),
(38, 'barnald11', '[email protected]', 'pNDRni', '', '6 El-Salam Al Omraneyah Giza Governorate', 31.1750572, 29.9996383, 0),
(39, 'ogarett12', '[email protected]', 'eDOWiIVTD94J', '', 'Hamida Tag Al Din At Talbeyah Al Qebleyah Al Omraneyah Giza Governorate', 31.1783203, 30.000384, 0),
(40, 'smattosoff13', '[email protected]', '7E4ZP6bYmWIT', '', 'Taha Hussein Al Omraneyah Al Gharbeyah Al Omraneyah Giza Governorate', 31.1827977, 30.0039762, 0),
(41, 'jmaccari14', '[email protected]', '8EVqMQmC0Mfm', '', 'Ali El-Refaey Al Omraneyah Giza Governorate', 31.1785975, 30.0013924, 0),
(42, 'kklishin15', '[email protected]', '8i2XHZev7Byq', '', 'Farid El Sebaay Oula Al Haram Al Omraneyah Giza Governorate', 31.1768245, 30.0013131, 0),
(43, 'mlivett16', '[email protected]', 'oDxUaSPjx', '', 'Shaaban Shalaby Al Omraneyah Giza Governorate', 31.1760883, 29.99999, 0),
(44, 'rhancke17', '[email protected]', 'HahKQF', '', 'Fatma Khalifa Al Omraneyah Giza Governorate', 31.1733703, 29.9992663, 0),
(45, 'icaverhill18', '[email protected]', '4yojoWzwdQY', '', 'Ayoub At Talbeyah Al Qebleyah Al Omraneyah Giza Governorate', 31.1726615, 29.9985702, 0),
(46, 'lsloat19', '[email protected]', 'n631hM3', '', 'Soliman El-Banna At Talbeyah Al Qebleyah Al Omraneyah Giza Governorate', 31.1708283, 29.997642, 0),
(47, 'cmelly1a', '[email protected]', 'GvgDZr', '', 'Amin Abd El-Hameed Oula Al Haram Al Omraneyah Giza Governorate', 31.1677094, 29.9980969, 0),
(48, 'wgorner1b', '[email protected]', 'Z3Uy4TfH', '', 'Khaled Amin Oula Al Haram Al Omraneyah Giza Governorate', 31.1642116, 29.9988085, 0),
(49, 'rcadamy1c', '[email protected]', 'J3n2qA', '', 'El-Taawon Oula Al Haram Al Omraneyah Giza Governorate', 31.1623418, 29.9989283, 0),
(50, 'bmuffitt1d', 'fmacalaster1d@networksolutions', 'b48JdI69', '', 'El-Omda Ahmed Abd El-Aal Oula Al Haram Al Omraneyah Giza Governorate', 31.1616643, 29.9994255, 0),
(51, 'ehughs1e', '[email protected]', 'JGgudku6v', '', 'Khater Oula Al Haram Al Omraneyah Giza Governorate', 31.1618324, 29.9994846, 0),
(52, 'utotterdill1f', '[email protected]', 'CIlDVzaz5v', '', 'El-Mansheya El-Gadid St Monshaat Al Bakari Al Haram Giza Governorate', 31.160006, 30.0000839, 0),
(53, 'lelegood1g', '[email protected]', 'rb85qefUcN', '', 'King Faisal St Monshaat Al Bakari Al Haram Giza Governorate', 31.1598227, 29.9993483, 0),
(54, 'rlargent1h', '[email protected]', 'uZEEmM', '', 'Shams Ibrahim Soliman Monshaat Al Bakari Al Haram Giza Governorate', 31.1601805, 30.0007087, 0),
(55, 'gbeauly1i', '[email protected]', 'WTmfkh3', '', 'El-Mansheya El-Gadid St Monshaat Al Bakari Al Haram Giza Governorate', 31.1592144, 30.0020584, 0),
(56, 'cbenaine1j', '[email protected]', '7V2QCp', '', 'El-Omda Ahmed Abd El-Aal Oula Al Haram Al Omraneyah Giza Governorate', 31.1616643, 29.9994255, 0),
(57, 'hpacquet1k', '[email protected]', 'pmaIYYwEmRgy', '', 'El-Khaleel Ibrahim Oula Al Haram Al Omraneyah Giza Governorate', 31.1673514, 29.9998155, 0),
(58, 'dechelle1l', '[email protected]', 'bgWr7a6fO13', '', 'Ahmed Abd El-Mohsen Oula Al Haram Al Omraneyah Giza Governorate', 31.1596951, 29.9962236, 0),
(59, 'dheak1m', '[email protected]', 'IBPst2W', '', 'Mohammed El-Mahdi Oula Al Haram Al Omraneyah Giza Governorate', 31.1582816, 29.9961746, 0),
(60, 'mmar1n', '[email protected]', 'QQbqLA', '', 'Ramseis Al Sani Oula Al Haram Al Omraneyah Giza Governorate', 31.156267, 29.9940482, 0),
(61, 'wbatrick1o', '[email protected]', 'jNMJb8pAv', '', '132 Al Haram Oula Al Haram Al Omraneyah Giza Governorate', 31.1546707, 29.992887, 0),
(62, 'gdavidge1p', '[email protected]', 'P2jAtEm', '', 'Nemt Nasr Allah Al Kom Al Akhdar Al Omraneyah Giza Governorate', 31.1546108, 29.9920694, 0),
(63, 'zpawelek1q', '[email protected]', 'kKXbCh', '', 'Aboi Gazia Al Kom Al Akhdar Al Omraneyah Giza Governorate', 31.1578353, 29.99213, 0),
(64, 'nyaakov1r', '[email protected]', '5GQbPS', '', 'El-Omda Oula Al Haram Al Omraneyah Giza Governorate', 31.150708, 29.9916669, 0),
(65, 'hambage1s', '[email protected]', 'vh3Bzg6c', '', 'Hasan Samorah Al Kom Al Akhdar Al Omraneyah Giza Governorate', 31.15137, 29.9908798, 0),
(66, 'aouver1t', '[email protected]', 'scLF0ibhFhF', '', 'Ragab Abd El-Hameed Al Kom Al Akhdar Al Omraneyah Giza Governorate', 31.1531914, 29.9889701, 0),
(67, 'hlarman1u', '[email protected]', 'j315h1K', '', 'El-Omda El-Kadeem Al Kom Al Akhdar Al Omraneyah Giza Governorate', 31.1552165, 29.9880551, 0),
(68, 'tjaskowicz1v', '[email protected]', 'yfpJLZ', '', 'Ajiad Makkah Kafr Nassar Al Haram Giza Governorate', 31.1350563, 30.0004029, 0),
(69, 'espellar1w', '[email protected]', 'cPYP1LaWqBh', '', 'Mohammed Ateya Kafr Nassar Al Haram Giza Governorate', 31.1346351, 29.9988617, 0),
(70, 'agirt1x', '[email protected]', 'FCOgFJiT', '', 'El-Iman Kafr Nassar Al Haram Giza Governorate', 31.1344996, 29.9984566, 0),
(71, 'Alvera Cassley', '[email protected]', 'iMRKg9XVks', '', 'Abou El Feda, Mohammed Mazhar, Zamalek, Giza Governorate', 30.072332, 31.221248, 0),
(72, 'Greg Faulkener', '[email protected]', 'u8r27E', '', '2 Sekat Abou Al Fida\nAbu Al Feda\nZamalek\nGiza Governorate', 30.066925, 31.216475, 0),
(73, 'Odelle Ruf', '[email protected]', 'AWMOeSyx', '', '18 Omar Toson, Madinet Al Eelam, Al Agouzah, Giza Governorate', 30.064477, 31.208498, 0),
(74, 'Lilith MacScherie', '[email protected]', '8LH4TYh', '', '15 Gamal Abd Al Naser _al Nile, Madinet Al Eelam, Al Agouzah, Giza Governorate', 30.06175, 31.209133, 0),
(75, 'Lexy Ewdale', '[email protected]', '4VnSbv', '', '21 Bahgat Ali, Mohammed Mazhar, Zamalek, Giza Governorate', 30.070322, 31.221215, 0),
(76, 'Javier Brinson', '[email protected]', 'TED8Jw2wYz3e', '', '27 El-Yasmin, Mohammed Mazhar, Zamalek, Giza Governorate', 30.069564, 31.219255, 0),
(77, 'Merissa Pocknoll', '[email protected]', 'a0By9tsdW', '', '31 Al Narges, Mohammed Mazhar, Zamalek, Giza Governorate', 30.070091, 31.219811, 0),
(78, 'Joya Oldham', '[email protected]', 'WwlE6oUqQs5', '', '33 Al Ward, Mohammed Mazhar, Zamalek, Giza Governorate', 30.070305, 31.220052, 0),
(79, 'Allie Delgua', '[email protected]', 'lJwPE12PJyXk', '', '10 Kamal Al Tawil, Mohammed Mazhar, Zamalek, Giza Governorate', 30.069896, 31.222461, 0),
(80, 'Mabel Karpeev', '[email protected]', 'cmMmPeQJT', '', 'Zamalek, Mohammed Mazhar, Zamalek, Giza Governorate', 30.071628, 31.22076, 0),
(81, 'Helli Henrion', '[email protected]', 'qUXqR4P8xouW', '', '5 El-Nabawy El-Mohandes, Madinet Al Eelam, Al Agouzah, Giza Governorate', 30.064006, 31.21179, 0),
(82, 'Georgy Trevithick', '[email protected]', '34W3MhF8ple', '', '17 Dr Ahmed Al Hofy-Almansora, Madinet Al Eelam, Al Agouzah, Giza Governorate', 30.064888, 31.208328, 0),
(83, 'Ardenia Dennes', '[email protected]', 's0i5Qe', '', '15 El-Gihad, Tag Ad Dewal, Imbaba, Giza Governorate', 30.068192, 31.210043, 0),
(84, 'Gisela Wonham', '[email protected]', 'ajPxQW', '', '21 Dr Ahmed Al Hofy-Almansora, Madinet Al Eelam, Al Agouzah, Giza Governorate', 30.065264, 31.208578, 0),
(85, 'Fran Torpie', '[email protected]', 'CAvU2eU2770', '', '56 Saleh Abou Sewaral Mahrousa, Madinet Al Eelam, Al Agouzah, Giza Governorate', 30.064205, 31.205711, 0),
(86, 'Catlaina Velte', '[email protected]', 'BuzgYd5', '', '6 Abd El-Aziz Talaat Harb, Madinet Al Eelam, Al Agouzah, Giza Governorate', 30.065616, 31.205271, 0),
(87, 'Matias Percival', '[email protected]', 'pwBiZXZ4xPyZ', '', 'Salah El-Deen, Tag Ad Dewal, Imbaba, Giza Governorate', 30.067698, 31.214362, 0),
(88, 'Nelia Gouth', '[email protected]', 'binZLJ', '', '6-2 Haroun Tag Ad Dewal Imbaba Giza Governorate', 30.06989, 31.215832, 0),
(89, 'Conchita Heinert', '[email protected]', '5Nxvls', '', '4 Ismail Mohammed, Abu Al Feda, Zamalek, Giza Governorate', 30.065273, 31.216945, 0),
(90, 'Koressa Marikhin', '[email protected]', 'hvwJuJ', '', '2 Aldoktor Allahwni, Abu Al Feda, Zamalek, Giza Governorate', 30.062515, 31.218592, 0),
(91, 'Ellswerth Denson', '[email protected]', 'ixVXvP7', '', '12 Hasan Asem, Mohammed Mazhar, Zamalek, Giza Governorate', 30.06278, 31.220112, 0),
(92, 'Derril Sime', '[email protected]', 'T2dzTaR9g', '', 'Unnamed Road, Abu Al Feda, Zamalek, Giza Governorate', 30.061893, 31.218132, 0),
(93, 'Freida Ingley', '[email protected]', 'HSJKggf', '', '58 Abou Al Mahasen Al Shazli, Al Huwaiteyah, Al Agouzah, Giza Governorate', 30.060361, 31.209973, 0),
(94, 'Elka Kupec', '[email protected]', 'uncPBYwp6', '', '11 26 July, Al Huwaiteyah, Al Agouzah, Giza Governorate', 30.060463, 31.209168, 0),
(95, 'Brandea Palffrey', '[email protected]', 'z0pxwaUp', '', '5 El-Nabawy El-Mohandes, Madinet Al Eelam, Al Agouzah, Giza Governorate', 30.064006, 31.21179, 0),
(96, 'Moira Moxsom', '[email protected]', 'la1AaMPwV', '', '6 Ahmed Sabry, Mohammed Mazhar, Zamalek, Giza Governorate', 30.061669, 31.221247, 0),
(97, 'Addy Pighills', '[email protected]', 'gptzu2s', '', '12 Hasan Asem, Mohammed Mazhar, Zamalek, Giza Governorate', 30.062587, 31.220486, 0),
(98, 'Fan Lawfull', '[email protected]', 'O9RwC8U7', '', '14 Al Ghayth, Al Huwaiteyah, Al Agouzah, Giza Governorate', 30.05825, 31.21434, 0),
(99, 'Gracie Cowper', '[email protected]', 'UVSN1j1C', '', '7 Al Zafer, Al Huwaiteyah, Al Agouzah, Giza Governorate', 30.057373, 31.214013, 0),
(100, 'Mar Cropp', '[email protected]', 'R7wa6ZupI', '', '11 Al Ghayth, Al Huwaiteyah, Al Agouzah, Giza Governorate', 30.057187, 31.214823, 0);
-- --------------------------------------------------------
--
-- Table structure for table `user_follow_area`
--
DROP TABLE IF EXISTS `user_follow_area`;
CREATE TABLE `user_follow_area` (
`UserId` int(11) NOT NULL,
`AreaId` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Table structure for table `user_follow_incident`
--
DROP TABLE IF EXISTS `user_follow_incident`;
CREATE TABLE `user_follow_incident` (
`UserId` int(11) NOT NULL,
`IncidentId` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Table structure for table `user_notifications`
--
DROP TABLE IF EXISTS `user_notifications`;
CREATE TABLE `user_notifications` (
`UserId` int(11) NOT NULL,
`NotificationId` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- --------------------------------------------------------
--
-- Table structure for table `voted_incidents`
--
DROP TABLE IF EXISTS `voted_incidents`;
CREATE TABLE `voted_incidents` (
`UserId` int(11) NOT NULL,
`IncidentId` int(11) NOT NULL,
`Vote` tinyint(1) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Indexes for dumped tables
--
--
-- Indexes for table `area`
--
ALTER TABLE `area`
ADD PRIMARY KEY (`AreaId`);
--
-- Indexes for table `department`
--
ALTER TABLE `department`
ADD PRIMARY KEY (`DepartmentId`);
--
-- Indexes for table `extra_incident_photos`
--
ALTER TABLE `extra_incident_photos`
ADD PRIMARY KEY (`IncidentId`);
--
-- Indexes for table `incidents`
--
ALTER TABLE `incidents`
ADD PRIMARY KEY (`IncidentId`);
--
-- Indexes for table `incident_warnings`
--
ALTER TABLE `incident_warnings`
ADD PRIMARY KEY (`IncidentWarningId`);
--
-- Indexes for table `notifications`
--
ALTER TABLE `notifications`
ADD PRIMARY KEY (`NotificationId`);
--
-- Indexes for table `organization_in_area`
--
ALTER TABLE `organization_in_area`
ADD PRIMARY KEY (`OrganizationId`);
--
-- Indexes for table `user`
--
ALTER TABLE `user`
ADD PRIMARY KEY (`UserId`),
ADD UNIQUE KEY `Password` (`Password`);
--
-- Indexes for table `user_follow_area`
--
ALTER TABLE `user_follow_area`
ADD PRIMARY KEY (`UserId`,`AreaId`);
--
-- Indexes for table `user_follow_incident`
--
ALTER TABLE `user_follow_incident`
ADD PRIMARY KEY (`UserId`,`IncidentId`);
--
-- Indexes for table `user_notifications`
--
ALTER TABLE `user_notifications`
ADD PRIMARY KEY (`UserId`,`NotificationId`);
--
-- Indexes for table `voted_incidents`
--
ALTER TABLE `voted_incidents`
ADD PRIMARY KEY (`UserId`,`IncidentId`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `area`
--
ALTER TABLE `area`
MODIFY `AreaId` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
--
-- AUTO_INCREMENT for table `department`
--
ALTER TABLE `department`
MODIFY `DepartmentId` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `incidents`
--
ALTER TABLE `incidents`
MODIFY `IncidentId` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=144;
--
-- AUTO_INCREMENT for table `incident_warnings`
--
ALTER TABLE `incident_warnings`
MODIFY `IncidentWarningId` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `notifications`
--
ALTER TABLE `notifications`
MODIFY `NotificationId` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `organization_in_area`
--
ALTER TABLE `organization_in_area`
MODIFY `OrganizationId` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `user`
--
ALTER TABLE `user`
MODIFY `UserId` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=101;
/*!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 */;