-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb.sql
2214 lines (2015 loc) · 454 KB
/
db.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
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- phpMyAdmin SQL Dump
-- version 4.0.10deb1
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Jul 01, 2016 at 12:54 PM
-- Server version: 5.5.46-0ubuntu0.14.04.2
-- PHP Version: 5.5.9-1ubuntu4.14
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 utf8 */;
--
-- Database: `ClinicManagement`
--
-- --------------------------------------------------------
--
-- Table structure for table `calendar`
--
CREATE TABLE IF NOT EXISTS `calendar` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(100) DEFAULT NULL,
`description` mediumtext,
`start` timestamp NULL DEFAULT NULL,
`end` timestamp NULL DEFAULT NULL,
`entry_by` int(11) DEFAULT NULL,
`google_id` varchar(255) NOT NULL,
PRIMARY KEY (`id`),
KEY `id` (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=861 ;
--
-- Dumping data for table `calendar`
--
INSERT INTO `calendar` (`id`, `title`, `description`, `start`, `end`, `entry_by`, `google_id`) VALUES
(14, 'Student', 'this is a test trial', '2015-10-08 04:00:00', '2015-10-09 04:00:00', 1, ''),
(15, 'trial', 'sdd', '2015-10-15 04:00:00', '2015-10-15 04:00:00', 7, ''),
(787, ' ISTE STATE LEVEL CONVENTION ', 'Dear Students,\n\nThis year our institute is bestowed with the honor of conducting “ISTE Students State Level Convention 2013” on 21st September, 2013 by the Executive Council, ISTE, New Delhi. Various ISTE awards will be presented in the Convention to the students for their performance during the year. Paper / Poster / Project Presentation /Robotics and Lan Gaming activities will be conducted during the convention.\n\nI m sending you details of the same just for your knowledge and information.\n\nDETAILS OF EVENTS ISTE STATE LEVEL CONVENTION 2013\nPATRONS\n\nDr. R. Murugesan\nPresident, ISTE\nDr. Vasani Rupesh P.\nChairman, ISTE Gujarat Section\nShree Pravinbhai Maniar\nChairman, V. V. P. E. C.\nDr. Sachin Parikh\nPrincipal, V. V. P. E. C.\n\nADVISORY BOARD\nProf. P. K .Desai, Vice President, ISTE\nDr. S. Basil Gnanappa, Executive Secretary, ISTE\nProf. Indrajit Patel, Executive Council Member, ISTE\nShree Chandrakantbhai Pavagadhi, Managing Trustee, V. V. P. E. C.\nShree Lalitbhai Mehta, Trustee, V. V. P. E. C.\nShree Kaushikbhai Shukla, Trustee, V. V. P. E. C.\n\nORGANIZING COMMITTEE\nORGANIZING CONVENERS\nMs. Raja Pooja A.\nFaculty Advisor, ISTE Student Chapter\nDr. Chirag Vibhakar\nH. O. D, Electrical Engg Department\nMs. Shilpa Kathad,\nFaculty Advisor, ISTE Staff Chapter\n\nPROGRAMME MEMBERS\n\nMs. Devangi Kotak\nAssistant Professor, C. E. Dept.\nMs. Darshana H. Patel\nAssistant Professor, I. T. Dept.\nMr. Jignesh Ajmera\nAssistant Professor, E. C. Dept.\nDr. Krishna Joshi\nAssistant Professor, B. T. Dept.\n \nMr. K. V. Nagecha\nAssistant Prof. & HOD, Civil Dept.\nDr. O. K. Mahadwad\nAssistant Prof. & HOD, Chemical Dept.\nMs. Megha Kariya\nAssistant Professor, Mechanical Dept.\n\nDATE OF EVENT: 21st September, 2013.\nEVENTS: 1) Paper Presentation\n 2) Poster Presentation\n 3) Project Presentation\n 4) Robotics\n 5) Lan Gaming\n \n \n \nFEES:\n· Rs. 250 /- per person for maximum 3 Events (Paper, Poster, Project) – For ISTE Members.\n· Rs. 350/- per person for maximum 3 Events (Paper, Poster, Project) – For Non - ISTE Members.\n· Rs. 100/- per person for Robotics – For ISTE / Non-ISTE Members both.\n· On the spot Registration for Lan Gaming.\n \nSUBMISSION:\nPaper: Full Length\nPoster / Project: Abstract\n \nDEADLINES:\n17th August - 2013 Submission of paper, poster and project details only for VVPians\n31st August – 2013: Submission of paper, poster and project details as mentioned above.\n5th September – 2013: Declaration of Final Acceptance on Website / Through Email.\n10th September – 2013: Registration / Payment of Fees\n \nPROCEDURE FOR REGISTRATION:\nStep – 1: Submit your paper / poster / project details on [email protected](Please mention your branch with your name) before 31st August 2013.\nStep – 2: After confirmation of acceptance, on 5th September, Download Registration Form \nStep – 3: Draw a D. D. of the name “V. V. P. Project Co-ordinator”, payable at “Rajkot”. (Please write down your name at the back side of D. D. with title of your paper/poster/project)\nStep – 4: Post both Registration form as well as D. D. to our address, VVP Engineering College, Virda Vajadi, Kalawad Road, Rajkot, Gujarat-360005\n\nFOR FURTHER QUERIES:\nContact:\nStudent Co-ordinators:\n1) Mangukiya Ajay 2) Goswami Darshit\nM: 89800 89853 M: 90169 90875\n\nThanking you,\n\nPooja Raja\nFaculty', '2013-09-21 04:00:00', '2013-09-21 04:00:00', 31, '2phv51meb9g8rg4art4bmoppcg'),
(799, 'Testing Cal', 'This is a test to see how the Calendar works in the current system.', '2015-11-04 05:00:00', '2015-11-04 05:00:00', 41, ''),
(798, 'Hina birthday', NULL, '2015-11-10 05:00:00', '2015-11-10 05:00:00', 38, 'hjjs58lgbibea34k69sgr0t9gs'),
(788, 'GDG Ahmedabad - DevFest 2013', 'DevFest is a series of community-led events that have technical sessions centered around Google developer technologies and platforms (like Android, Chrome, Google+, and App Engine) and also Open source technologies.\n\nMore at: http://gdgahmedabad.com/devfest13/\n\nOfficial hash tags are: #DevFestAhm #GDGahmedabad #gDayX', '2013-09-15 04:00:00', '2013-09-15 04:00:00', 31, 'lhondp6270jft3r2gjvtbf5o1o'),
(789, 'Google I/O Extended Gandhinagar 2013', NULL, '2013-05-15 04:00:00', '2013-05-15 04:00:00', 31, 'mfa04rpptp40v0o338npou5bco'),
(790, NULL, NULL, '2014-02-18 05:00:00', '2014-02-19 05:00:00', 31, '6on9tnqf3uhkfg9vfj2a702blc'),
(791, 'GDG Rajkot Devfest 2014', 'After the Grand success of ?#?AndroidWear? Event, we are really excited to see you all for our Devfest !\n\nYes, we are announcing the Devfest 2014 on 9th Nov 2014 in Association with Atmiya Institute Of Technology and Sciencet & Elluminati as our Partners !\n\nThis time we have come up with the new concept of ?#?CodeLabs? Only. As from the past few feedbacks we analysed that you guys are more interested into practical sessions rather than speaker talks. So this time we have kept only CodeLabs and no speaker session.\n\nCodeLab sessions will be conducted on below technologies\n1) ?#?Polymer?\n2) ?#?AngularJS?\n3) ?#?NodeJS? (A javascript based server)\n4) Android Wear\n5) ?#?IonicFramework? (Cross Platform Mobile Apps)\n6) ?#?MongoDB?\n\nFor this amazing Developer festival we would like to invite the GBG Rajkot and all the other Entrepreneurs and Developers.\n\nPlease stay tuned for the speaker details and registration link.\nThis time we have only 200 seats for the Devfest so book yours as soon as we publish the registration link.\n\nAITS - VENUE & INFRASTRUCTURE PARTNER\nELLUMINATI - TECHNOLOGY PARTNER\n\nThank you @Rajdeep Vaghela for the awesome design !', '2014-11-09 05:00:00', '2014-11-09 05:00:00', 31, 'il6ht3jdaqac9mr745v6a9a5d4'),
(792, 'Your Facebook account was accessed from Firefox on Linux at 11:26. Log in for more info.cfccccgccccc', NULL, '2014-12-15 05:00:00', '2014-12-15 05:00:00', 31, 'q6bvbcbk9u8k2s8kn2ug2sh418'),
(793, 'Baahubali - The Beginning (Hindi) (U/A)', 'To see detailed information for automatically created events like this one, use the official Google Calendar app. http://g.co/calendar\n\nThis event was created from an email that you received in Gmail. https://mail.google.com/mail?extsrc=cal&plid=ACUX6DMY_LHceeDABU0y099Lhik2FXG8C12k2EI\n', '2015-07-21 04:00:00', '2015-07-21 04:00:00', 31, '_6tlnaqrle5p6cpb4dhmj4phpehp7apb369hn0c3hdsq32s1mc5lnar3ae1j6ispgd1qjaq3f6plmicrf68rmoc1p69o6qobl64rn4qr76kqme'),
(794, 'August Office Hour: Campaign Challenge to rally around the latest Firefox!', 'The latest and greatest Firefox is optimized for Windows 10. Find out what kind of online sharing and offline events you can do to help Windows users use and love our browser.\n\n**Participating in this campaign challenge will allow you to move up in the recognition system, don''t miss out!\n\nAsk any program related questions in this etherpad: mzl.la/1MgPBZk. We''ll be answering them during Office Hour!', '2015-08-13 04:00:00', '2015-08-13 04:00:00', 31, 'picv6ii9upad8pqsr2bfkiuvo0'),
(795, 'Trial Event', NULL, '2015-10-28 04:00:00', '2015-10-28 04:00:00', 31, 'p96amsen6na6g0kspetqn2vdas'),
(800, '', '', '2015-12-11 05:00:00', '2015-12-23 05:00:00', NULL, ''),
(801, '', '', '2015-12-01 05:00:00', '2015-12-07 05:00:00', NULL, ''),
(803, 'Appointment forHiren Try', 'Doctor: Trial Doctor<br/> Clinic : Clinic', '2015-12-12 12:00:00', '2015-12-12 12:30:00', 11, ''),
(804, 'Appointment forMira Thakkar', 'Doctor: Trial Doctor<br/> Clinic : Clinic', '2015-12-12 13:30:00', '2015-12-12 14:00:00', NULL, ''),
(805, 'Appointment forVivek Sancheti', 'Doctor: Trial Doctor<br/> Clinic : Smile Elements Dental', '2015-12-12 21:45:00', '2015-12-12 10:00:00', NULL, ''),
(806, 'Appointment forMira Thakkar', 'Doctor: Trial Doctor<br/> Clinic : Smile Elements Dental', '2015-12-12 22:45:00', '2015-12-12 11:00:00', NULL, ''),
(807, 'Appointment forPatient 1', 'Doctor: Doctor1 aa<br/> Clinic : Clinic', '2015-12-14 16:30:00', '2015-12-14 16:30:00', 10, ''),
(808, 'Appointment forPatient3 3', 'Doctor: Doctor1 aa<br/> Clinic : Clinic', '2015-12-14 22:30:00', '2015-12-14 22:30:00', 10, ''),
(809, 'Appointment forPatient3 3', 'Doctor: Doctor1 aa<br/> Clinic : Clinic', '2015-12-14 22:30:00', '2015-12-14 22:50:00', 10, ''),
(810, 'Appointment forMira Thakkar', 'Doctor: Trial Doctor<br/> Clinic : Clinic', '2015-12-12 15:30:00', '2015-12-12 16:00:00', 11, ''),
(811, 'Appointment forMira Thakkar', 'Doctor: Trial Doctor<br/> Clinic : Clinic', '2015-12-15 21:30:00', '2015-12-15 22:00:00', 11, ''),
(812, 'Appointment forMira Thakkar', 'Doctor: Trial Doctor<br/> Clinic : Smile Elements Dental', '2015-12-12 21:00:00', '2015-12-12 09:15:00', 11, ''),
(813, 'Appointment forMira Thakkar', 'Doctor: Trial Doctor<br/> Clinic : Smile Elements Dental', '2015-12-16 22:30:00', '2015-12-16 22:45:00', 11, ''),
(814, 'Appointment formark john', 'Doctor: Trial Doctor<br/> Clinic : Solanki Eye Hospital', '2015-12-23 21:20:00', '2015-12-23 09:40:00', 27, ''),
(815, 'Appointment forjohn doe', 'Doctor: Trial Doctor<br/> Clinic : Clinic3', '2015-12-22 21:00:00', '2015-12-22 09:30:00', 28, ''),
(816, 'Appointment forJanki Thakkar', 'Doctor: Trial Doctor<br/> Clinic : Clinic3', '2015-12-26 12:00:00', '2015-12-26 12:30:00', 30, ''),
(817, 'Appointment forJanki Thakkar', 'Doctor: Trial Doctor<br/> Clinic : Smile Elements Dental', '2015-12-26 21:00:00', '2015-12-26 21:30:00', 30, ''),
(818, 'Appointment forPatient 1', 'Doctor: Trial Doctor<br/> Clinic : Smile Elements Dental', '2015-12-26 23:00:00', '2015-12-26 11:30:00', 11, ''),
(819, 'Appointment forMira Thakkar', 'Doctor: Trial Doctor<br/> Clinic : Smile Elements Dental', '2015-12-26 21:30:00', '2015-12-26 10:00:00', 24, ''),
(820, 'Appointment forMira Try', 'Doctor: Trial Doctor<br/> Clinic : Smile Elements Dental', '2015-12-26 23:30:00', '2015-12-26 12:00:00', 39, ''),
(821, 'Appointment forMira Try', 'Doctor: Trial Doctor<br/> Clinic : Smile Elements Dental', '2015-12-26 22:30:00', '2015-12-26 23:00:00', 39, ''),
(822, 'Appointment forMira Try', 'Doctor: Trial Doctor<br/> Clinic : Smile Elements Dental', '2015-12-26 22:30:00', '2015-12-26 23:00:00', 39, ''),
(823, 'Appointment forMira Try', 'Doctor: Trial Doctor<br/> Clinic : Clinic3', '2015-12-26 15:00:00', '2015-12-26 15:30:00', 39, ''),
(824, 'Appointment forMira Try', 'Doctor: Trial Doctor<br/> Clinic : Clinic3', '2015-12-26 15:00:00', '2015-12-26 15:30:00', 39, ''),
(825, 'Appointment forTry patient', 'Doctor: Trial Doctor<br/> Clinic : Solanki Eye Hospital', '2015-12-30 21:00:00', '2015-12-30 09:20:00', 39, ''),
(826, 'Appointment forPatient1 test', 'Doctor: Srividya Rao<br/> Clinic : Solanki Eye Hospital', '2016-01-07 19:00:00', '2016-01-07 07:15:00', 41, ''),
(827, 'Appointment forTry patient', 'Doctor: Trial Doctor<br/> Clinic : Smile Elements Dental', '2016-01-09 21:00:00', '2016-01-09 21:30:00', 39, ''),
(828, 'Appointment forTry patient', 'Doctor: Srividya Rao<br/> Clinic : Solanki Eye Hospital', '2016-01-07 19:15:00', '2016-01-07 19:30:00', 39, ''),
(829, 'Appointment forTry patient', 'Doctor: Trial Doctor<br/> Clinic : Clinic3', '2016-01-09 12:00:00', '2016-01-09 12:30:00', 39, ''),
(830, 'Appointment forTry patient', 'Doctor: Srividya Rao<br/> Clinic : Solanki Eye Hospital', '2016-01-07 21:30:00', '2016-01-07 21:45:00', 39, ''),
(831, 'Appointment forTry patient', 'Doctor: Trial Doctor<br/> Clinic : Smile Elements Dental', '2016-01-09 15:30:00', '2016-01-09 16:00:00', 39, ''),
(832, 'Appointment forPatient 1', 'Doctor: Doctor test<br/> Clinic : Derma Solutions', '2016-01-15 15:00:00', '2016-01-15 15:30:00', 11, ''),
(833, 'Appointment forPatient 1', 'Doctor: Doctor test<br/> Clinic : Derma Solutions', '2016-01-15 15:00:00', '2016-01-15 15:30:00', 11, ''),
(834, 'Appointment forPatient 1', 'Doctor: Doctor test<br/> Clinic : Derma Solutions', '2016-01-15 15:00:00', '2016-01-15 15:30:00', 11, ''),
(835, 'Appointment forRuchit Vyas', 'Doctor: Shantala Rudresh<br/> Clinic : care Homeopathy', '2016-01-12 00:45:00', '2016-01-12 01:30:00', 11, ''),
(836, 'Appointment forJohn test', 'Doctor: Shankar kumar<br/> Clinic : Solanki Eye Hospital', '2016-01-16 20:00:00', '2016-01-16 20:15:00', 1, ''),
(837, 'Appointment forJohn test', 'Doctor: keirti agarval<br/> Clinic : Jeevan Dental Clinic', '2016-01-26 14:00:00', '2016-01-26 14:30:00', 1, ''),
(838, 'Appointment formark watson', 'Doctor: Srividya Rao<br/> Clinic : Solanki Eye Hospital', '2016-02-10 21:45:00', '2016-02-10 22:00:00', 60, ''),
(839, 'Appointment formark watson', 'Doctor: Srividya Rao<br/> Clinic : Health Care Clinic', '2016-02-09 18:40:00', '2016-02-09 19:00:00', 60, ''),
(840, 'Appointment forPatient 1', 'Doctor: Trial Doctor<br/> Clinic : Smile Care', '2016-02-13 15:00:00', '2016-02-13 15:20:00', 11, ''),
(841, 'Appointment forPatient 1', 'Doctor: Trial Doctor<br/> Clinic : Dental Solutions', '2016-02-13 15:20:00', '2016-02-13 15:40:00', 11, ''),
(842, 'Appointment forJohn test', 'Doctor: Anjali Shetty<br/> Clinic : Dental Solutions', '2016-02-19 14:20:00', '2016-02-19 14:40:00', 1, ''),
(843, 'Appointment forPatient 1', 'Doctor: Trial Doctor<br/> Clinic : Smile Elements Dental', '2016-02-20 21:00:00', '2016-02-20 21:30:00', 11, ''),
(844, 'Appointment forPatient 1', 'Doctor: Trial Doctor<br/> Clinic : Smile Elements Dental', '2016-02-20 15:00:00', '2016-02-20 15:30:00', 11, ''),
(845, 'Appointment forPatient 1', 'Doctor: Srividya Rao<br/> Clinic : Solanki Eye Hospital', '2016-02-19 13:00:00', '2016-02-19 13:15:00', 11, ''),
(846, 'Appointment forJohn test', 'Doctor: Sirish Nelivigi<br/> Clinic : Nelivigi Eye Hospital And Surgical Centre', '2016-02-22 21:00:00', '2016-02-22 21:30:00', 1, ''),
(847, 'Appointment forPatient 1', 'Doctor: Trial Doctor<br/> Clinic : Smile Care', '2016-02-23 22:00:00', '2016-02-23 22:20:00', 11, ''),
(848, 'Appointment forPatient 1', 'Doctor: Sreenivasa <br/> Clinic : N N Gastroenterology Centre', '2016-02-23 22:20:00', '2016-02-23 22:40:00', 11, ''),
(849, 'Appointment forPatient 1', 'Doctor: Trial Doctor<br/> Clinic : Smile Elements Dental', '2016-02-27 15:00:00', '2016-02-27 15:30:00', 11, ''),
(850, 'Appointment forPatient 1', 'Doctor: Sreenivasa <br/> Clinic : N N Gastroenterology Centre', '2016-02-25 20:00:00', '2016-02-25 20:20:00', 11, ''),
(851, 'Appointment forJohn test', 'Doctor: Sreenivasa <br/> Clinic : N N Gastroenterology Centre', '2016-02-25 20:20:00', '2016-02-25 20:40:00', 1, ''),
(852, 'Appointment forPatient 1', 'Doctor: Prabhakar Koregol<br/> Clinic : Namana Medical Centre', '2016-02-24 20:00:00', '2016-02-24 20:45:00', 11, ''),
(853, 'Appointment forPatient 1', 'Doctor: Trial Doctor<br/> Clinic : Smile Care', '2016-02-27 13:00:00', '2016-02-27 13:20:00', 11, ''),
(854, 'Appointment forPatient 1', 'Doctor: Sreenivasa <br/> Clinic : N N Gastroenterology Centre', '2016-02-27 23:00:00', '2016-02-27 23:20:00', 11, ''),
(855, 'Appointment forPatient 1', 'Doctor: Shamala <br/> Clinic : Bhagawaan Healthcare Center', '2016-02-26 14:00:00', '2016-02-26 14:20:00', 11, ''),
(856, 'Appointment forRuchit Vyas', 'Doctor: Prabhakar Koregol<br/> Clinic : Namana Medical Centre', '2016-02-25 00:30:00', '2016-02-25 01:15:00', 11, ''),
(857, 'Appointment forPatient 1', 'Doctor: Shankar kumar<br/> Clinic : Life Care Hospital', '2016-02-25 20:00:00', '2016-02-25 20:20:00', 11, ''),
(858, 'Appointment fortest patient', 'Doctor: Sirish Nelivigi<br/> Clinic : Nelivigi Eye Hospital And Surgical Centre', '2016-03-16 22:30:00', '2016-03-16 23:00:00', 1, ''),
(859, 'Appointment forPatient 1', 'Doctor: Sirish Nelivigi<br/> Clinic : Nelivigi Eye Hospital And Surgical Centre', '2016-03-21 20:00:00', '2016-03-21 20:30:00', 11, ''),
(860, 'Appointment forWetr wertwt', 'Doctor: Vishal Kakhandki<br/> Clinic : Vikhyath Eye and Retina Care Center', '2016-03-21 14:20:00', '2016-03-21 14:40:00', 11, '');
-- --------------------------------------------------------
--
-- Table structure for table `mailbox`
--
CREATE TABLE IF NOT EXISTS `mailbox` (
`Id` int(11) NOT NULL AUTO_INCREMENT,
`SenderID` int(11) DEFAULT NULL,
`ReceiverID` int(11) DEFAULT NULL,
`Subject` varchar(255) DEFAULT NULL,
`Message` text,
`SentDate` datetime DEFAULT NULL,
`CreatedDate` datetime DEFAULT NULL,
`entry_by` int(11) DEFAULT NULL,
`IsView` enum('0','1') DEFAULT '0',
`Status` enum('draft','sent','receive','trash','inbox') DEFAULT 'inbox',
`Category` int(6) DEFAULT NULL,
`Labels` varchar(100) DEFAULT NULL,
PRIMARY KEY (`Id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=46 ;
--
-- Dumping data for table `mailbox`
--
INSERT INTO `mailbox` (`Id`, `SenderID`, `ReceiverID`, `Subject`, `Message`, `SentDate`, `CreatedDate`, `entry_by`, `IsView`, `Status`, `Category`, `Labels`) VALUES
(3, 11, 10, 'Try Mail', '<p>Try Mail</p>', '2015-12-14 12:20:53', '2015-12-14 12:20:53', 11, '1', 'sent', NULL, NULL),
(4, 11, 10, 'Try Mail', '<p>Try Mail</p>', '2015-12-14 12:20:53', '2015-12-14 12:20:53', 11, '1', 'inbox', NULL, NULL),
(9, 10, 24, 'test', '<p>testff</p>', '2015-12-22 13:26:55', '2015-12-22 13:26:55', 10, '0', 'sent', NULL, NULL),
(10, 10, 24, 'test', '<p>testff</p>', '2015-12-22 13:26:55', '2015-12-22 13:26:55', 10, '1', 'inbox', NULL, NULL),
(11, 10, 10, 'Try Mail', '<p>Try Mail</p>', '2015-12-22 13:27:31', '2015-12-22 13:27:31', 10, '0', 'sent', NULL, NULL),
(12, 10, 10, 'Try Mail', '<p>Try Mail</p>', '2015-12-22 13:27:31', '2015-12-22 13:27:31', 10, '1', 'inbox', NULL, NULL),
(31, 10, 39, 'Try Mail', '<p>test mail</p>', '2016-01-07 05:43:24', '2016-01-07 05:43:24', 10, '0', 'sent', NULL, NULL),
(32, 10, 39, 'Try Mail', '<p>test mail</p>', '2016-01-07 05:43:24', '2016-01-07 05:43:24', 10, '1', 'inbox', NULL, NULL),
(33, 1, 39, 'Test Mail', '<p>test Mail</p>', '2016-01-08 11:40:04', '2016-01-08 11:40:04', NULL, '1', 'sent', NULL, NULL),
(34, 1, 39, 'Test Mail', '<p>test Mail</p>', '2016-01-08 11:40:04', '2016-01-08 11:40:04', NULL, '1', 'inbox', NULL, NULL),
(35, 39, 10, 'test report for Try patient', 'Test Report</br></br></br><a href="http://107.170.186.189/uploads/Reports/1452253497-22216748.pdf">Download Attachment</a>', '2016-01-08 11:46:48', '2016-01-08 11:46:48', NULL, '1', 'sent', NULL, NULL),
(36, 39, 10, 'test report for Try patient', 'Test Report</br></br></br><a href="http://107.170.186.189/uploads/Reports/1452253497-22216748.pdf">Download Attachment</a>', '2016-01-08 11:46:48', '2016-01-08 11:46:48', NULL, '0', 'inbox', NULL, NULL),
(37, 60, 14, 'hello doc - I have a question', '<p>Hello doc,</p><p>How are you?</p><p>I got a question - regarding medic kndjsfmk - should I take it before meal or after meal?</p>', '2016-02-09 08:33:54', '2016-02-09 08:33:54', 60, '0', 'sent', NULL, NULL),
(38, 60, 14, 'hello doc - I have a question', '<p>Hello doc,</p><p>How are you?</p><p>I got a question - regarding medic kndjsfmk - should I take it before meal or after meal?</p>', '2016-02-09 08:33:54', '2016-02-09 08:33:54', 60, '1', 'inbox', NULL, NULL),
(39, 14, 60, 'hello doc - I have a question', '<p>Hello doc,</p><p>How are you?</p><p>I got a question - regarding medic kndjsfmk - should I take it before meal or after meal?</p><p><br></p><p>You need to take it before meal..<br></p>', '2016-02-09 08:34:43', '2016-02-09 08:34:43', 14, '0', 'sent', NULL, NULL),
(40, 14, 60, 'hello doc - I have a question', '<p>Hello doc,</p><p>How are you?</p><p>I got a question - regarding medic kndjsfmk - should I take it before meal or after meal?</p><p><br></p><p>You need to take it before meal..<br></p>', '2016-02-09 08:34:43', '2016-02-09 08:34:43', 14, '1', 'inbox', NULL, NULL),
(41, 1, 21, 'test', '<p><br></p>', '2016-02-13 12:55:02', '2016-02-13 12:55:02', NULL, '0', 'inbox', 0, NULL),
(42, 1, 42, 'test', '<p><br></p>', '2016-02-13 12:55:04', '2016-02-13 12:55:04', NULL, '0', 'inbox', 0, NULL),
(43, 1, 45, 'test', '<p><br></p>', '2016-02-13 12:55:06', '2016-02-13 12:55:06', NULL, '0', 'inbox', 0, NULL),
(44, 1, 67, 'rrerere', '<p>erere</p>', '2016-02-23 22:12:25', '2016-02-23 22:12:25', NULL, '0', 'sent', NULL, NULL),
(45, 1, 67, 'rrerere', '<p>erere</p>', '2016-02-23 22:12:25', '2016-02-23 22:12:25', NULL, '0', 'inbox', NULL, NULL);
-- --------------------------------------------------------
--
-- Table structure for table `sessions`
--
CREATE TABLE IF NOT EXISTS `sessions` (
`id` varchar(50) NOT NULL DEFAULT '',
`payload` text,
`last_activity` int(20) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `sessions`
--
INSERT INTO `sessions` (`id`, `payload`, `last_activity`) VALUES
('0ad6ed7015a95be1f99b5dae42aad12f7aa917f6', 'YTo1OntzOjY6Il90b2tlbiI7czo0MDoiaXFXbnZIMkxXV0lEZ3VOWml3Z3h1cmFRb2U3dUhXajFnTHZXeGtVWSI7czo2OiJ0aGVtZXMiO3M6NToic3hpbW8iO3M6OToiX3ByZXZpb3VzIjthOjE6e3M6MzoidXJsIjtzOjIyOiJodHRwOi8vMTA3LjE3MC4xODYuMTg5Ijt9czo5OiJfc2YyX21ldGEiO2E6Mzp7czoxOiJ1IjtpOjE0NjczODY0MzY7czoxOiJjIjtpOjE0NjczODY0MzY7czoxOiJsIjtzOjE6IjAiO31zOjU6ImZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=', 1467386436),
('11c8b4a9d799b5e750bde9c863ed3ad92385c47f', 'YTo1OntzOjY6Il90b2tlbiI7czo0MDoiQjg1TWljRkpiUTJHVWNoQlQwcHBaNFBHNjM4c0Y5VHRqbTFKWWxDeSI7czo2OiJ0aGVtZXMiO3M6NToic3hpbW8iO3M6OToiX3ByZXZpb3VzIjthOjE6e3M6MzoidXJsIjtzOjE2OiJodHRwOi8vbWVkaWNvLnRrIjt9czo5OiJfc2YyX21ldGEiO2E6Mzp7czoxOiJ1IjtpOjE0NjczODE1ODk7czoxOiJjIjtpOjE0NjczODE1ODk7czoxOiJsIjtzOjE6IjAiO31zOjU6ImZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=', 1467381590),
('25011656ea1fa489d00eb8e92f2b96106ab7aef8', 'YTo1OntzOjY6Il90b2tlbiI7czo0MDoiUjNmMm5YNzhEUDNLTVRvVFViZXNGWllQcjBrS0tNUU5VOVY5eExYdyI7czo2OiJ0aGVtZXMiO3M6NToic3hpbW8iO3M6OToiX3ByZXZpb3VzIjthOjE6e3M6MzoidXJsIjtzOjIyOiJodHRwOi8vMTA3LjE3MC4xODYuMTg5Ijt9czo5OiJfc2YyX21ldGEiO2E6Mzp7czoxOiJ1IjtpOjE0NjczODk4MjA7czoxOiJjIjtpOjE0NjczODk4MjA7czoxOiJsIjtzOjE6IjAiO31zOjU6ImZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=', 1467389820),
('2b556634acdbd504cef15ae1ab28f11340e2e968', 'YTo1OntzOjY6Il90b2tlbiI7czo0MDoiU2RiandZZnJwNDdLSUU0dHJFNkdmTHNReE1uRnNiOHFUNGdnejhpTCI7czo2OiJ0aGVtZXMiO3M6NToic3hpbW8iO3M6OToiX3ByZXZpb3VzIjthOjE6e3M6MzoidXJsIjtzOjIyOiJodHRwOi8vMTA3LjE3MC4xODYuMTg5Ijt9czo5OiJfc2YyX21ldGEiO2E6Mzp7czoxOiJ1IjtpOjE0NjczODk4MzE7czoxOiJjIjtpOjE0NjczODk4MzE7czoxOiJsIjtzOjE6IjAiO31zOjU6ImZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=', 1467389831),
('3897f9da3e07fd1505e54f5b10d933358cf0f6ca', 'YTo1OntzOjY6Il90b2tlbiI7czo0MDoiRUhPUVJWOGF2aGNnbE1BOENtenY1Nm5yNWxTNTdMR0hSRkcwbGluYyI7czo2OiJ0aGVtZXMiO3M6NToic3hpbW8iO3M6OToiX3ByZXZpb3VzIjthOjE6e3M6MzoidXJsIjtzOjIyOiJodHRwOi8vMTA3LjE3MC4xODYuMTg5Ijt9czo5OiJfc2YyX21ldGEiO2E6Mzp7czoxOiJ1IjtpOjE0NjczNzIwMjQ7czoxOiJjIjtpOjE0NjczNzIwMjQ7czoxOiJsIjtzOjE6IjAiO31zOjU6ImZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=', 1467372024),
('41575bd1fd213b2f7b60e6e3ee199f9b0c4a4e4f', 'YTo1OntzOjY6Il90b2tlbiI7czo0MDoiOTYyQ1ZSdXNXbk5tS08xZTZKR0NTbFJLaVV2VEJ3dXJ0MG5qNHNxNiI7czo2OiJ0aGVtZXMiO3M6NToic3hpbW8iO3M6OToiX3ByZXZpb3VzIjthOjE6e3M6MzoidXJsIjtzOjIwOiJodHRwOi8vd3d3Lm1lZGljby50ayI7fXM6OToiX3NmMl9tZXRhIjthOjM6e3M6MToidSI7aToxNDY3Mzc3MDU0O3M6MToiYyI7aToxNDY3Mzc3MDU0O3M6MToibCI7czoxOiIwIjt9czo1OiJmbGFzaCI7YToyOntzOjM6Im9sZCI7YTowOnt9czozOiJuZXciO2E6MDp7fX19', 1467377054),
('54262190484a07459a4123c2c90a05822904d882', 'YTozOntzOjY6Il90b2tlbiI7czo0MDoiSjduenU0TU1LSFNURk5yczcySGpKNFNxemttN2hGVG5CWlRCRm5CNCI7czo5OiJfc2YyX21ldGEiO2E6Mzp7czoxOiJ1IjtpOjE0NjczOTE4MDk7czoxOiJjIjtpOjE0NjczOTE4MDk7czoxOiJsIjtzOjE6IjAiO31zOjU6ImZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=', 1467391809),
('546feb9bb2759c68f84ce4ec1d283be3aea59c5b', 'YTo1OntzOjY6Il90b2tlbiI7czo0MDoiUjBGeHg5ZXdMV3hDaWlWbVo2SVJYQVc2cW5wamlnVVh1eHE0SGw5TyI7czo2OiJ0aGVtZXMiO3M6NToic3hpbW8iO3M6OToiX3ByZXZpb3VzIjthOjE6e3M6MzoidXJsIjtzOjIyOiJodHRwOi8vMTA3LjE3MC4xODYuMTg5Ijt9czo5OiJfc2YyX21ldGEiO2E6Mzp7czoxOiJ1IjtpOjE0NjczNzIwNDI7czoxOiJjIjtpOjE0NjczNzIwNDI7czoxOiJsIjtzOjE6IjAiO31zOjU6ImZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=', 1467372042),
('5e46355c42c6f5ccabfdb2f90363ab542a961f28', 'YTo1OntzOjY6Il90b2tlbiI7czo0MDoiUDJXbHE0dDVLMU90OFN5WmNIdVkybzZwZENkTUxJYkQ5eXVteGNnZyI7czo2OiJ0aGVtZXMiO3M6NToic3hpbW8iO3M6OToiX3ByZXZpb3VzIjthOjE6e3M6MzoidXJsIjtzOjIyOiJodHRwOi8vd3d3Lm1hZmVuZ3dvLmNuIjt9czo5OiJfc2YyX21ldGEiO2E6Mzp7czoxOiJ1IjtpOjE0NjczODI4NjA7czoxOiJjIjtpOjE0NjczODI4NjA7czoxOiJsIjtzOjE6IjAiO31zOjU6ImZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=', 1467382860),
('6cc0490487da9fea98aef10a741a12a252f4733d', 'YTo1OntzOjY6Il90b2tlbiI7czo0MDoicjZRRVR1SEhJbHlybnFtd2tPblVKelgzWjVGZDZkNGxRMDFMWG5WMCI7czo2OiJ0aGVtZXMiO3M6NToic3hpbW8iO3M6OToiX3ByZXZpb3VzIjthOjE6e3M6MzoidXJsIjtzOjIyOiJodHRwOi8vMTA3LjE3MC4xODYuMTg5Ijt9czo5OiJfc2YyX21ldGEiO2E6Mzp7czoxOiJ1IjtpOjE0NjczODI1MDI7czoxOiJjIjtpOjE0NjczODI1MDI7czoxOiJsIjtzOjE6IjAiO31zOjU6ImZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=', 1467382502),
('72f974f59d7949de00c6aec3f11c31e94762c8de', 'YTo1OntzOjY6Il90b2tlbiI7czo0MDoicEpnUEVtRjQxREU3S2VsYlNwdDBTYkdZc1Y2SXNhUEVTOEsycUtZRyI7czo2OiJ0aGVtZXMiO3M6NToic3hpbW8iO3M6OToiX3ByZXZpb3VzIjthOjE6e3M6MzoidXJsIjtzOjIyOiJodHRwOi8vMTA3LjE3MC4xODYuMTg5Ijt9czo5OiJfc2YyX21ldGEiO2E6Mzp7czoxOiJ1IjtpOjE0NjczNzkwODI7czoxOiJjIjtpOjE0NjczNzkwODI7czoxOiJsIjtzOjE6IjAiO31zOjU6ImZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=', 1467379082),
('8c3579da4fb554db16fa7082fc82b17b65cff6d6', 'YTo1OntzOjY6Il90b2tlbiI7czo0MDoiS2ZCOGNjTHY0aXo0RmxORW1FclhmQ3RSV05tWHI3ZmVyODNUS3pONiI7czo2OiJ0aGVtZXMiO3M6NToic3hpbW8iO3M6OToiX3ByZXZpb3VzIjthOjE6e3M6MzoidXJsIjtzOjIyOiJodHRwOi8vMTA3LjE3MC4xODYuMTg5Ijt9czo5OiJfc2YyX21ldGEiO2E6Mzp7czoxOiJ1IjtpOjE0NjczODI0OTY7czoxOiJjIjtpOjE0NjczODI0OTY7czoxOiJsIjtzOjE6IjAiO31zOjU6ImZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=', 1467382496),
('8dd9192b8497c8dd5edfb951ee257beff418843c', 'YTo1OntzOjY6Il90b2tlbiI7czo0MDoiazJVbjFmQW9COWJtZE9uREMxcWo5TFpyeDlXM1RwVlo4Q0w2eDlqaiI7czo2OiJ0aGVtZXMiO3M6NToic3hpbW8iO3M6OToiX3ByZXZpb3VzIjthOjE6e3M6MzoidXJsIjtzOjIyOiJodHRwOi8vMTA3LjE3MC4xODYuMTg5Ijt9czo5OiJfc2YyX21ldGEiO2E6Mzp7czoxOiJ1IjtpOjE0NjczODY0NTQ7czoxOiJjIjtpOjE0NjczODY0NTQ7czoxOiJsIjtzOjE6IjAiO31zOjU6ImZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=', 1467386454),
('9c658f5bdcdc1bd9c624998dcc00fe74627ddf26', 'YTo1OntzOjY6Il90b2tlbiI7czo0MDoiTWJHNzdacHFPZW1JdjU1a3J1aFVOQUlwZERzR2xKREZwTWlwRnZ2WSI7czo2OiJ0aGVtZXMiO3M6NToic3hpbW8iO3M6OToiX3ByZXZpb3VzIjthOjE6e3M6MzoidXJsIjtzOjg3OiJodHRwOi8vMTA3LjE3MC4xODYuMTg5L3Jlc3VsdD9sb2M9JnE9Z2FzdHJvZW50ZXJvbG9naXN0JnNjb3BlPUV4cGVydGl6YXRpb24mdHlwZT1Eb2N0b3IiO31zOjk6Il9zZjJfbWV0YSI7YTozOntzOjE6InUiO2k6MTQ2NzM4NDc2ODtzOjE6ImMiO2k6MTQ2NzM4NDc2ODtzOjE6ImwiO3M6MToiMCI7fXM6NToiZmxhc2giO2E6Mjp7czozOiJvbGQiO2E6MDp7fXM6MzoibmV3IjthOjA6e319fQ==', 1467384768),
('9f15828f3b21c68b2acf478cf56e676e7a757f01', 'YTo1OntzOjY6Il90b2tlbiI7czo0MDoiZ3hEYjRDaU5kN1huUTBEZWF6cVJ5SWVkZ0JXeFRJcDVYVHRvaUtEWiI7czo2OiJ0aGVtZXMiO3M6NToic3hpbW8iO3M6OToiX3ByZXZpb3VzIjthOjE6e3M6MzoidXJsIjtzOjIyOiJodHRwOi8vMTA3LjE3MC4xODYuMTg5Ijt9czo5OiJfc2YyX21ldGEiO2E6Mzp7czoxOiJ1IjtpOjE0NjczNzU1Mzc7czoxOiJjIjtpOjE0NjczNzU1Mzc7czoxOiJsIjtzOjE6IjAiO31zOjU6ImZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=', 1467375537),
('a0d097b8c4104be62b0baf18c53e2f404bcf9dbf', 'YTo1OntzOjY6Il90b2tlbiI7czo0MDoiSXBkUzA0VmJWdTBya1h2RXFoVFVzU3NXSFJBYm9JTWJRNlVFWUpQbiI7czo2OiJ0aGVtZXMiO3M6NToic3hpbW8iO3M6OToiX3ByZXZpb3VzIjthOjE6e3M6MzoidXJsIjtzOjE2OiJodHRwOi8vbWVkaWNvLnRrIjt9czo5OiJfc2YyX21ldGEiO2E6Mzp7czoxOiJ1IjtpOjE0NjczNjg4MzY7czoxOiJjIjtpOjE0NjczNjg4MzY7czoxOiJsIjtzOjE6IjAiO31zOjU6ImZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=', 1467368836),
('b70042107c11e0bbd6e959295f5306c599013116', 'YTo1OntzOjY6Il90b2tlbiI7czo0MDoiSzlxQW8zYzlRR0VGcFBHTE5aYU1yYmN2bVRUY3kwOThMU2psQUl3NyI7czo2OiJ0aGVtZXMiO3M6NToic3hpbW8iO3M6OToiX3ByZXZpb3VzIjthOjE6e3M6MzoidXJsIjtzOjE2OiJodHRwOi8vbWVkaWNvLnRrIjt9czo5OiJfc2YyX21ldGEiO2E6Mzp7czoxOiJ1IjtpOjE0NjczODExNDc7czoxOiJjIjtpOjE0NjczODExNDc7czoxOiJsIjtzOjE6IjAiO31zOjU6ImZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=', 1467381147),
('cae79a8cdb60e8367e6f0e9bf5acc9032fa4c9d0', 'YTo1OntzOjY6Il90b2tlbiI7czo0MDoiTHlEdFVFbnZNbGhXZ0FmYXFWa2Y2eGZKbUVXamM3NDBtandsNFQzRSI7czo2OiJ0aGVtZXMiO3M6NToic3hpbW8iO3M6OToiX3ByZXZpb3VzIjthOjE6e3M6MzoidXJsIjtzOjIyOiJodHRwOi8vMTA3LjE3MC4xODYuMTg5Ijt9czo5OiJfc2YyX21ldGEiO2E6Mzp7czoxOiJ1IjtpOjE0NjczNzkwOTQ7czoxOiJjIjtpOjE0NjczNzkwOTQ7czoxOiJsIjtzOjE6IjAiO31zOjU6ImZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=', 1467379094),
('cef56eb7e5e377b9e68df4d165570f19cb724b3c', 'YTo1OntzOjY6Il90b2tlbiI7czo0MDoiUkZYdHRQUXVyOERRNWJxT2ExaHZkbGNkNm1HbU8wMldrWTNWZm9HdiI7czo2OiJ0aGVtZXMiO3M6NToic3hpbW8iO3M6OToiX3ByZXZpb3VzIjthOjE6e3M6MzoidXJsIjtzOjMzOiJodHRwOi8vbWVkaWNvLnRrL3Jlc3VsdC9jbGluaWMvMjciO31zOjk6Il9zZjJfbWV0YSI7YTozOntzOjE6InUiO2k6MTQ2NzM3NTkzOTtzOjE6ImMiO2k6MTQ2NzM3NTkzOTtzOjE6ImwiO3M6MToiMCI7fXM6NToiZmxhc2giO2E6Mjp7czozOiJvbGQiO2E6MDp7fXM6MzoibmV3IjthOjA6e319fQ==', 1467375939),
('e22d8b089b9a7a16c143ef320adfef9d421142d6', 'YTozOntzOjY6Il90b2tlbiI7czo0MDoiOGhCeXhzQm94a0dMM1pVMkZXMnFydXZLaHRtZXNQNXFWU3FlME5EVSI7czo5OiJfc2YyX21ldGEiO2E6Mzp7czoxOiJ1IjtpOjE0NjczOTE4MDY7czoxOiJjIjtpOjE0NjczOTE4MDY7czoxOiJsIjtzOjE6IjAiO31zOjU6ImZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=', 1467391806),
('fbe6607cebc8dd251a4269075073f5d4162031e0', 'YTo1OntzOjY6Il90b2tlbiI7czo0MDoiZloxUTNQSFZJQ2E1TzZLbUZaUHd3dWpHSENrNHE3THMwbVJKRzRIRyI7czo2OiJ0aGVtZXMiO3M6NToic3hpbW8iO3M6OToiX3ByZXZpb3VzIjthOjE6e3M6MzoidXJsIjtzOjIyOiJodHRwOi8vMTA3LjE3MC4xODYuMTg5Ijt9czo5OiJfc2YyX21ldGEiO2E6Mzp7czoxOiJ1IjtpOjE0NjczNzU1MjQ7czoxOiJjIjtpOjE0NjczNzU1MjQ7czoxOiJsIjtzOjE6IjAiO31zOjU6ImZsYXNoIjthOjI6e3M6Mzoib2xkIjthOjA6e31zOjM6Im5ldyI7YTowOnt9fX0=', 1467375524);
-- --------------------------------------------------------
--
-- Table structure for table `tb_alert`
--
CREATE TABLE IF NOT EXISTS `tb_alert` (
`AlertID` int(11) NOT NULL AUTO_INCREMENT,
`ReceiverID` int(11) NOT NULL,
`Title` varchar(255) NOT NULL,
`Message` varchar(255) NOT NULL,
`Urgency` int(11) NOT NULL,
`CreatedAt` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`entry_by` varchar(10) NOT NULL,
PRIMARY KEY (`AlertID`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `tb_appointment`
--
CREATE TABLE IF NOT EXISTS `tb_appointment` (
`AppointmentID` int(11) NOT NULL AUTO_INCREMENT,
`DoctorID` int(11) NOT NULL,
`PatientID` int(11) NOT NULL,
`ClinicID` int(11) NOT NULL,
`StartAt` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`EndAt` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
`CreatedAt` date DEFAULT NULL,
`Type` tinyint(4) NOT NULL,
`Diagnosis` varchar(255) NOT NULL,
`isCancelled` tinyint(4) NOT NULL,
`entry_by` varchar(255) NOT NULL,
PRIMARY KEY (`AppointmentID`),
KEY `Appointment_DoctorID_foreign` (`DoctorID`),
KEY `Appointment_ClinicID_foreign` (`ClinicID`),
KEY `Appointment_PatientID_foreign` (`PatientID`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=75 ;
--
-- Dumping data for table `tb_appointment`
--
INSERT INTO `tb_appointment` (`AppointmentID`, `DoctorID`, `PatientID`, `ClinicID`, `StartAt`, `EndAt`, `CreatedAt`, `Type`, `Diagnosis`, `isCancelled`, `entry_by`) VALUES
(3, 2, 6, 6, '2015-12-09 20:40:00', '2015-12-02 10:20:36', '2015-12-09', 0, 'abc', 1, '10'),
(4, 3, 6, 5, '2016-12-09 06:50:15', '2016-12-09 16:05:00', '2016-12-09', 0, '', 0, '13'),
(17, 3, 6, 1, '2016-12-14 16:30:00', '2016-12-14 17:00:00', '2016-12-14', 0, '', 0, '13'),
(19, 3, 8, 1, '2015-12-14 22:30:00', '2015-12-14 22:50:00', '2015-12-14', 0, '', 0, '13'),
(24, 2, 12, 6, '2015-12-23 21:20:00', '2015-12-23 09:40:00', '2015-12-23', 0, '', 0, '10'),
(26, 2, 13, 1, '2015-12-26 12:00:00', '2015-12-26 12:30:00', '2015-12-26', 0, '', 1, '10'),
(27, 2, 6, 5, '2015-12-29 23:30:00', '2015-12-30 00:00:00', '2015-12-29', 0, '', 0, '10'),
(28, 2, 6, 5, '2015-12-29 23:00:00', '2015-12-29 23:30:00', '2015-12-29', 0, '', 0, '10'),
(35, 2, 18, 6, '2015-12-30 21:00:00', '2015-12-30 09:20:00', '2015-12-30', 0, '', 0, '10'),
(36, 4, 19, 6, '2016-01-07 19:00:00', '2016-01-07 19:15:00', '2016-01-07', 0, '', 0, '14'),
(37, 2, 18, 5, '2016-01-09 21:00:00', '2016-01-09 21:30:00', '2016-01-09', 0, '', 0, '10'),
(38, 4, 18, 6, '2016-01-07 19:15:00', '2016-01-07 19:30:00', '2016-01-07', 0, '', 0, '14'),
(39, 2, 18, 1, '2016-01-09 12:00:00', '2016-01-09 12:30:00', '2016-01-09', 0, '', 1, '10'),
(40, 2, 18, 5, '2016-01-09 23:30:00', '2016-01-10 00:00:00', '2016-01-09', 0, '', 1, '10'),
(42, 4, 18, 6, '2016-01-07 21:30:00', '2016-01-07 21:45:00', '2016-01-07', 0, '', 0, '14'),
(43, 2, 18, 5, '2016-01-09 15:30:00', '2016-01-09 16:00:00', '2016-01-09', 0, '', 0, '10'),
(44, 15, 6, 7, '2016-01-15 15:00:00', '2016-01-15 15:30:00', '2016-01-15', 0, '', 0, '43'),
(45, 15, 6, 7, '2016-01-15 15:00:00', '2016-01-15 15:30:00', '2016-01-15', 0, '', 1, '43'),
(46, 15, 6, 7, '2016-01-15 15:00:00', '2016-01-15 15:30:00', '2016-01-15', 0, '', 1, '43'),
(49, 24, 23, 6, '2016-01-16 20:00:00', '2016-01-16 20:15:00', '2016-01-16', 0, '', 0, '53'),
(50, 17, 23, 10, '2016-01-26 14:00:00', '2016-01-26 14:30:00', '2016-01-26', 0, '', 0, '46'),
(51, 4, 26, 6, '2016-02-10 21:45:00', '2016-02-10 22:00:00', '2016-02-10', 0, '', 1, '14'),
(52, 4, 26, 2, '2016-02-09 18:40:00', '2016-02-09 19:00:00', '2016-02-09', 0, '', 0, '14'),
(53, 2, 6, 1, '2016-02-13 15:00:00', '2016-02-13 15:20:00', '2016-02-13', 0, '', 0, '10'),
(54, 2, 6, 17, '2016-02-13 15:20:00', '2016-02-13 15:40:00', '2016-02-13', 0, '', 0, '10'),
(55, 32, 23, 17, '2016-02-19 14:20:00', '2016-02-19 14:40:00', '2016-02-19', 0, '', 0, '63'),
(56, 2, 6, 5, '2016-02-20 21:00:00', '2016-02-20 21:30:00', '2016-02-20', 0, '', 0, '10'),
(57, 2, 6, 5, '2016-02-20 15:00:00', '2016-02-20 15:30:00', '2016-02-20', 0, '', 1, '10'),
(58, 4, 6, 6, '2016-02-19 13:00:00', '2016-02-19 13:15:00', '2016-02-19', 0, '', 0, '14'),
(59, 49, 23, 38, '2016-02-22 21:00:00', '2016-02-22 21:30:00', '2016-02-22', 0, '', 0, '80'),
(60, 2, 6, 1, '2016-02-23 22:00:00', '2016-02-23 22:20:00', '2016-02-23', 0, '', 0, '10'),
(61, 28, 6, 20, '2016-02-23 22:20:00', '2016-02-23 22:40:00', '2016-02-23', 0, '', 0, '57'),
(62, 2, 6, 5, '2016-02-27 15:00:00', '2016-02-27 15:30:00', '2016-02-27', 0, '', 0, '10'),
(63, 28, 6, 20, '2016-02-25 20:00:00', '2016-02-25 20:20:00', '2016-02-25', 0, '', 1, '57'),
(64, 28, 23, 20, '2016-02-25 20:20:00', '2016-02-25 20:40:00', '2016-02-25', 0, '', 0, '57'),
(65, 27, 6, 19, '2016-02-24 20:00:00', '2016-02-24 20:45:00', '2016-02-24', 0, '', 1, '56'),
(66, 2, 6, 1, '2016-02-27 13:00:00', '2016-02-27 13:20:00', '2016-02-27', 0, '', 0, '10'),
(67, 28, 6, 20, '2016-02-27 23:00:00', '2016-02-27 23:20:00', '2016-02-27', 0, '', 0, '57'),
(69, 30, 6, 24, '2016-02-26 14:00:00', '2016-02-26 14:20:00', '2016-02-26', 0, '', 0, '59'),
(70, 27, 22, 19, '2016-02-25 00:30:00', '2016-02-25 01:15:00', '2016-02-24', 0, '', 0, '56'),
(71, 24, 6, 14, '2016-02-25 20:00:00', '2016-02-25 20:20:00', '2016-02-25', 0, '', 0, '53'),
(72, 49, 24, 38, '2016-03-16 22:30:00', '2016-03-16 23:00:00', '2016-03-16', 0, '', 0, '80'),
(73, 49, 6, 38, '2016-03-21 15:20:00', '2016-03-21 15:30:00', '2016-03-21', 0, '', 0, '80'),
(74, 50, 30, 39, '2016-03-21 14:20:00', '2016-03-21 14:40:00', '2016-03-21', 0, '', 0, '81');
-- --------------------------------------------------------
--
-- Table structure for table `tb_clinic`
--
CREATE TABLE IF NOT EXISTS `tb_clinic` (
`ClinicID` int(11) NOT NULL AUTO_INCREMENT,
`Name` varchar(255) NOT NULL,
`Address` varchar(255) NOT NULL,
`Latitude` varchar(100) NOT NULL,
`Longitude` varchar(100) NOT NULL,
`Description` text NOT NULL,
`City` varchar(255) NOT NULL,
`entry_by` varchar(10) NOT NULL,
`Speciality` varchar(255) NOT NULL,
`Photo` varchar(255) NOT NULL,
`isSponsored` tinyint(4) NOT NULL,
`Recommendation` bigint(20) NOT NULL,
`Gallary` varchar(255) NOT NULL,
`Locality` varchar(100) NOT NULL,
`isDelete` tinyint(4) NOT NULL,
PRIMARY KEY (`ClinicID`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=41 ;
--
-- Dumping data for table `tb_clinic`
--
INSERT INTO `tb_clinic` (`ClinicID`, `Name`, `Address`, `Latitude`, `Longitude`, `Description`, `City`, `entry_by`, `Speciality`, `Photo`, `isSponsored`, `Recommendation`, `Gallary`, `Locality`, `isDelete`) VALUES
(1, 'Smile Care', 'Juhu, Mumbai, Maharashtra, India', '19.098821', '72.8320717', 'It is Bombay''s best Dental Clinic.', 'Mumbai', '', 'orthopedic', '1455302690-55873931.jpg', 1, 15, '1452068729-68954472.jpg,1452068729-83195976.jpg', 'Juhu', 0),
(2, 'Health Care Clinic', 'Kalawad Road', '22.2892287', '70.7767843', '', 'Rajkot', '', 'Dental', '1452687968-1181241.jpg', 0, 28, '', 'kalawad road', 0),
(5, 'Smile Elements Dental', 'No 13, Bellandur Above Amba Bajaj Show Room, Landmark: Opp to Central Mall,Bengaluru', '12.9715987', '77.5945627', 'Smile Elements Dental is a Dental clinic in Bellandur, Bangalore. The clinic is visited by dentists like Dr. Sangeeta Honnur, Dr. Anup Belludi and Dr.Srihari', 'Bangalore', '', 'Dental', '1452686735-24011269.jpg', 1, 69, '1452686735-58661945.jpg,1452686735-65870593.jpg,1452686735-53648660.jpg', 'Indiranagar', 0),
(6, 'Solanki Eye Hospital', '#191/1 Link Road 2nd cross, malleswaram', '12.978998', '77.5598682', 'Dr. Solanki Eye Hospital, synonymous with eye care services, for over 28 years, is conveniently located in the heart of Bangalore city. This stand-alone hi-tech centre sprawls over 15,000 sq. ft., designed exclusively for a gamut of ophthalmic services. ', 'Bangalore', '', 'Ophthalmology', '1452686915-95956688.png', 1, 74, '1452686915-12641511.jpg,1452686915-95104653.jpg,1452686915-75615334.jpg', 'Marathahali', 0),
(7, 'Derma Solutions', '3rd Floor Above Bajaj Service Center Opp Innovative Multiplex Marathahalli', '12.9591722', '77.697419', 'Derma Solutions provides holistic skin and hair solutions by treating basic skin diseases and carrying out procedures like dermatosurgery, advanced cosmetology, lasers and hair transplantation.', 'Bangalore', '', 'Dermatology,orthopedic', '1452687028-72750763.png', 0, 58, '1452687028-25787415.jpg,1452687028-48401028.jpg', 'Basaveshwaranagar', 0),
(8, 'care Homeopathy', '#163/1502/1, 1st Floor, 9th Main Road, 15th Cross, Landmark: Opp. Malabar Gold Jayanagar', '12.9250074', '77.5938028', 'Wecarehomeopathy Is Run By A Group Of Experienced Doctors That Have Been Practicing Homeopathy For Past Several Years.', 'Bangalore', '', 'Homeopathy', '1452687138-60018917.jpg', 0, 6, '1452687138-31220134.jpg,1452687138-92653270.jpg', 'Jayanagar', 0),
(10, 'Jeevan Dental Clinic', 'University Road, Sadguru Nagar, Virpa Nagar, Rajkot, Gujarat, India', '22.2850901', '70.7481776', '', 'Rajkot', '44', 'Dental', '1452687302-50283075.jpg', 1, 0, '1452254685-94617631.JPG', 'University road', 0),
(11, ' Revive Skin Hair & Laser Centre', 'Indiranagar, Bangalore, Karnataka, India', '12.9718915', '77.6411545', 'REVIVE aims at delivering skin, hair Cosmetic & laser treatments at its best. \r\nTeam of doctors lead by Dr J prasad have performed more than 3000 successful hair transplantations & more than 6000 laser treatments in the past 12 years.', 'Bangalore', '', 'Dermatology,Cosmetology,Plasctic Surgery', '1452687529-13844680.png', 0, 0, '1452687529-43421383.jpg,1452687529-8519545.jpg', 'Indiranagar', 0),
(12, 'Carewell Homoeo Clinic', '#1, AET College Road, Doddakannahalli, Carmelaram Post, Sarjapur Road. Landmark: Near Gear School, Bangalore', '12.9715987', '77.5945627', '', 'Bangalore', '', 'Homeopathy', '1452687631-49149557.png', 0, 0, '1452687631-67199687.jpg,1452687631-61408400.jpg', 'Malleswaram', 0),
(13, 'Keva Ayurveda Healthcare Pvt Ltd', '#12/2, 35th Main, 7th Cross, BTM 2nd Stage, Landmark: Adj DSR Naveen Lake View Apt, Bangalore', '12.9715987', '77.5945627', 'Multi-Speciality Clinic', 'Bangalore', '', 'Ayurveda', '1455302550-54601800.JPG', 0, 0, '1452499910-98917706.jpg,1452499910-28179515.jpg', 'Malleswaram', 0),
(14, 'Life Care Hospital', 'No.23/24, 20th Main,Gangothri Circle,1st Stage, Btm Layout. Landmark : Near Gangothri Bar & Restaurant, Bangalore', '12.9715987', '77.5945627', 'Life Care Hospital is a Multi Specialty clinic Some of the services provided by the clinic are: Operation Theater, Phototherapy Chamber for vitigo/leucoderma patients, General surgery, X Ray and laser hair removal. Click on ''map'' to find directions to reach Life Care Hospital.', 'Bangalore', '', 'Dermatology', '1452687796-12756261.jpg', 0, 0, '1452500091-5821036.jpg', 'Gangothri Circle', 0),
(15, 'Ramesh Cardiology Clinic', 'No. 2231, 23rd Cross, Banashankari 2nd Stage, Opp. National Co-operative Bank, Bangalore- 560070, Bangalore', '12.9715987', '77.5945627', 'Cardiology Clinic', 'Bangalore', '', 'Cardiology', '1452834765-25928292.PNG', 0, 0, '1452500302-36981130.jpg', 'Jayanagar', 0),
(16, 'My Dentist Clinic', '12th Main, 4 Block, Koramangala 4 Block, Landmark: Near Maharaja Hotel & Amp & Opp Beams Hospital, Bangalore', '12.9715987', '77.5945627', 'My Dentist, Just As The Name Symbolizes Stands For Personalized And Optimized Dental Care. We Are An Advanced Center For Complete Dental Care, With Nearly All Modern Treatment Facilities Under One Roof.', 'Bangalore', '13', 'dental', '1452687891-70152990.jpg', 0, 0, '1452500647-35562722.jpg,1452500647-79937852.jpg', 'Gangothri Circle', 0),
(17, 'Dental Solutions', '#498, 15Th Cross, II Stage, Landmark: Opp. BDA Park, Bangalore', '12.9715987', '77.5945627', 'Multi-speciality clinic', 'Bangalore', '', 'dental', '1452577552-42194875.jpg', 0, 0, '1452577287-63615878.jpg', 'Indiranagar', 0),
(18, 'Aditya Ayurveda Clinic And Panchakarma Kendra', '#56, 19th Main Road, 2nd Block, Rajajinagar. Landmark: Near to Navarang Theater & Opp. to BMTC Bus Stand, Bangalore', '12.9969764', '77.5511793', 'Aditya Ayurveda Clinic And Panchakarma Kendra is an Ayurveda clinic in Rajajinagar, Bangalore. Some of the services provided by the clinic are: Spine Rehabilitation, Infertility treatment, Piles Treatment, Snehapanam and Sirodhara.', 'Bangalore', '', 'Ayurveda', '1452835442-55296612.png', 0, 0, '', 'Rajajinagar', 0),
(19, 'Namana Medical Centre', 'No 4/A, Seenappa Layout, RMV 2nd Stage, Bangalore, Bangalore', '13.0305598', '77.5712708', ' Some of the services provided by the clinic are: Renal angiography, Echocardiography ECHO, Echocardiogram ECHO, Cardiac Catheterization and Graft angiograms.', 'Bangalore', '', 'Cardiology', '1452835756-66865819.png', 0, 0, '1452835756-74510777.jpg,1452835756-5451532.jpg', '', 0),
(20, 'N N Gastroenterology Centre', '#3, 80 Feet Road, RT Nagar, Landmark: Opp FM Silks, Bangalore', '13.0273281', '77.5770903', '', 'Bangalore', '', 'Gastroenterology', '1452837483-40529453.png', 0, 1, '', 'RT Nagar ', 0),
(21, ' Apollo Cradle', '25, 46th Cross, , Near Raghavendra Swamy Mutt, Jayanagar 5th Block, Bangalore, Karnataka 560011, Bangalore', '12.9715987', '77.5945627', 'Apollo Cradle is driven by the Apollo Group’s legacy of the last 30 years, of clinical excellence. The highest standards of care are provided to every patient, every mother, every baby and every child. And the facts speak for themselves – the hospital’s five year safety record is exemplary to say the least.', 'Bangalore', '', 'Gynecology', '1452837678-82202208.jpg', 0, 0, '1452837678-81563927.jpg,1452837678-74154336.jpg', 'Jayanagar', 0),
(22, 'Anjani Womens Day Care Hospital ', '#301, 9th Main, 1st Phase, Kalyan Nagar Post, HRBR Layout, Bangalore', '12.9715987', '77.5945627', '', 'Delhi', '', 'Gynecology', '1452840687-34424167.PNG', 0, 0, '1452840687-96591763.jpg,1452840687-54509207.jpg', 'kalyannagar', 0),
(23, 'Kshema Specialists Clinic', '#4036(805), Ground Floor, 80 Feet Road, VBHCS 4th Phase, Banashankari 1st stage, Bangalore, Bangalore', '12.9715987', '77.5945627', 'Kshema Specialists Clinic is committed to provide superior and quality health care services to address day-to-day health care needs of a family. To maximize convenience and comfort, Kshema Specialists Clinic is an integrated model and offers facilities for Specialist Consultation, Diagnostics, Preventive Health Checks and Physiotherapy, all under one roof.', 'Bangalore', '', 'Neurology,Urology', '1452856296-30261319.jpg', 0, 0, '1452856296-85943465.jpg,1452856296-61906415.jpg', 'Banashankari', 0),
(24, ' Bhagawaan Healthcare Center', '67, 2nd Floor,GK Arcade, Bull Temple Road, Basavangudi, Landmark: Near RamaKrishna Ashram', '12.9715987', '77.5945627', '', 'Bangalore', '', 'Psychiatrist', '1452859357-22308434.jpg', 0, 0, '1452859357-82209896.jpg', 'Basavanagudi', 0),
(25, 'New Clinic', 'Elish bidge, Ellisbridge, Ahmedabad, Gujarat, India', '', '', 'Best Clinic', 'ahemdabad', '14', 'Dermatology,Cosmetology', '1455167803-79517892.png', 0, 0, '1455167803-4155058.jpg', 'elisbridge', 1),
(26, 'Lotus Ayur Care Ayurveda Hospital', '#120, 4th Main Road, CBI Road, Ganagnagar, Landmark: Opp Aadishwar Showroom, Bangalore', '12.9715987', '77.5945627', 'Lotus Ayur Care is unique Ayurveda health care system in northern zone of Bangalore, South India. Our center is a fully equipped Ayurveda hospital and Panchakarma treatment center. Lotus Ayur Care aims to make Ayurveda treatment as primary Health care system in the community. ', 'Bangalore', '65', 'Ayurveda', '1455287986-76755142.png', 0, 0, '1455287986-75738688.jpg,1455287986-42801349.jpg,1455287986-34983384.jpg', 'Ganganagar', 0),
(27, 'Brahmchaitanya Homoeopathy Clinic And Diet Consultancy', '#129, Ground Floor, 3rd Cross, A Block, Landmark: Near CMR College And SBI Bank, AECS Layout, Bangalore', '12.9715987', '77.5945627', 'Brahmchaitanya Homoeopathy Clinic And Diet Consultancy is a Homeopathy clinic in Kundalahalli, Bangalore. The clinic is visited by homeopathy doctors like Dr. Chaitali G Kulkarni.', 'Bangalore', '', 'Homeopathy', '1455300766-24861139.jpg', 0, 0, '1455300766-58578815.jpg', 'Kundalahalli', 0),
(28, 'Cosmic Health Center', '#582, MRK Heights, 6th Cross, 4th Stage, Nagarbhavi 2nd Block, Nagarbhavi Landmark: Vinayaka Layout and Behind Panacea Hospital', '12.9715987', '77.5945627', 'Cosmic Health Center is one of the Best Clinic for Homeopathy & Ayurveda with Special Packages & Discounts on Treatments.', 'Bangalore', '67', 'Multi-Speciality', '1455304489-81518724.jpg', 0, 0, '1455304489-19499707.jpg,1455304489-80336747.jpg,1455304489-10470497.jpg', 'Nagarbhavi', 0),
(29, 'Global Clinic : Sattvam Specialty Homoeopathy', '#29, Mrutyunjaya, 8th Main, 18th Cross Junction, Malleswaram. Landmark: Near Nirmala Rani High School, ', '12.9715987', '77.5945627', 'The clinic treats patients Worldwide at its centre in Bangalore and ONLINE ( Global clinic - Bringing smiles across Miles) thro an Integrated approach since 30 yrs and is visited by a team of consultants. Some of the specialised areas of treatment are in ..... Allergies, Hormonal problems, Special children, Headaches, psychological issues etc. The team comprises of Homoeopathic consultants, Clinical Psychologist, Special educator, Yoga therapist, Dietitian & Nutritionist. ', 'Bangalore', '68', 'Homeopathy,Multi-Speciality', '', 0, 0, '1455305661-36970223.jpg,1455305661-25076651.jpg', 'Malleswaram', 0),
(30, 'Cardiovision', '#53, 36th Main, 3rd Cross, Dollar Scheme Layout, B.T.M. 1st Stage. Landmark: Near to Palms Apartment, Bangalore', '12.9715987', '77.5945627', 'Cardiovision is a Cardiology clinic in BTM Layout 1st Stage, Bangalore. The clinic is visited by cardiologists like Dr. Kiron Varghese. The timings of Cardiovision are: Mon to Sun: 5:00pm-9:00pm. Some of the services provided by the clinic are: Pacemaker, Angiogram, Cardiac Catheterization, Carotid Angioplasty And Stenting and Angioplasty. ', 'Bangalore', '69', 'Cardiology', '1455339919-96698344.jpg', 0, 0, '', 'BTM Layout 1st Stage', 0),
(31, 'BGS Global Hospital', '#67, Uttarahalli Road, Kengeri. Kengeri', '12.9133837', '77.4810475', 'BGS Global Hospital is a Dental hospital in Kengeri, Bangalore. The hospital is visited by doctors like Dr. Mukunda N K, Dr. Harisha V and Dr. J. Mohan Kumar.', 'Bangalore', '70', 'Cardiology', '1455341504-91551696.png', 0, 0, '', 'Kengeri', 0),
(32, 'Bangalore child Neurology and Rehabilitation center', '#8/A, Hans Complex, 1st Main, 1st Cross, Manuvana, Vijaynagar, Landmark: Near Adichunchunagiri Kalyana Mantapa', '12.9715987', '77.5945627', 'Welcome To The Bangalore Child Neurology And Rehabilitation Center Website. Bangalore Child Neurology And Rehabilitation Center Is Able To Offer A Variety Of Services To Children And Families With Neurologic Disorders', 'Bangalore', '72', 'Neurology', '1455342887-68298595.jpg', 0, 0, '1455342887-31890531.jpg', 'Vijayanagar', 0),
(33, 'Neuro Plastica', '#267/A, 4th Cross, 2nd Block, Jayanagar. Landmark: Near Ashok Pillar,& Diagonally Opp. to Girias', '12.9273807', '77.574012', 'Some of the services provided by the clinic are: Peripheral Neuro surgery, Spine Surgery, Aneurysm Surgery, Deep Brain Stimulation and Epilepsy surgery', 'Bangalore', '73', 'Neurology', '1455343423-76206583.jpg', 0, 0, '', 'Jayanagar', 0),
(34, 'Plexus Neurocenter', '#174, D''Costa Layout, Cooke Town (Wheeler Road), Landmark: Wheelers road extension near Canara bank, ', '12.9715987', '77.5945627', 'Some of the services provided by the clinic are: Nerve and Muscle Disorders and Headache. ', 'Bangalore', '74', 'Neurology', '1455344360-61219416.jpg', 0, 0, '', 'Frazer Town', 0),
(35, 'Rainbow Clinic& Diagnostic Laboratory', '#539, Puttenahalli main road, JP Nagar 7thPhase, Bangalore. Landmark: Above Nilgiris Supermarket , Op. Brigade Millennium, Bangalore', '12.891425', '77.5816362', 'Rainbow clinic was founded on the idea that a visit to a doctor should be a pleasant experience.\r\nOur centre has been designed to have a calming influence and alleviate fear as much as possible.\r\nWe created a space which is open and welcoming. A spacious play area / reception lets you settle down before your consultation. We have a play house, books and toys for children.Letting your child play keeps them engaged while we discuss the health concerns.We believe rainbow clinic is a facility unique in our locality with a family and child friendly ambience.', 'Bangalore', '76', 'Psychiatrist,General Surgery', '1455346295-2337691.jpg', 0, 0, '1455346295-65453118.jpg,1455346295-62135831.jpg', 'Jayanagar', 0),
(36, 'Queens Hospital', '#11/B, 19th Main, 25th Cross, 2nd Sector, HSR Layout, Landmark: Near Poorva Apartments & Behind Indian Oil petrol Bunk', '12.9715987', '77.5945627', 'At Queens Hospital, we understand that the needs of women and children are unique. That is why we are dedicated to improving the health and wellness of women and children across their lifespan.We strive to achieve this goal through co-ordinated, multi-disciplinary care provided by a network of highly-trained physicians and staff, offering the latest diagnostic and treatment options.We are very proud to have a skillful, enthusiastic team of staff working in our centre.In addition to the team based in our hospital, we also contract a number of clinical, technical, scientific and administrative experts.We provide uniform patient treatment & care with evidence based medicine in compliance with statutory regulations.', 'Bangalore', '77', 'Neurology,Multi-Speciality,Psychiatrist', '1455346771-95898388.png', 0, 0, '1455346771-56073695.jpg,1455346771-20286006.jpg,1455346771-77377982.jpg', 'BTM Layout 1st Stage', 0),
(37, 'Narayana Multispeciality Hospital', '#3&4, ITPL Main Rd, Sadaramangala Industrial Area, Whitefield, Bengaluru, Karnataka 560066 Whitefield, Bangalore', '12.9715987', '77.5945627', 'Narayana Multispecality Hospital, Whitefield is NH group first premium healthcare facility located in Whitefield. Key services offered include Cardiology, Cardiac Surgery, Neurosurgery, Nephrology, Obstetrics & Gynecology, Pediatrics, Medical Gastroenterology , orthopedics, General Medicine and General Surgery, Equipped with a state of art cath lab the specialists save lives of many people who experience heart attack and the emergency department offer critical care to patients with compassion.', 'Bangalore', '79', 'Psychiatrist,Multi-Speciality', '1455347621-51371264.PNG', 0, 0, '', 'Whitefield', 0),
(38, 'Nelivigi Eye Hospital And Surgical Centre', '#446/21, 2nd Floor, Sarjapur Ring Road, Bellandur Circle. Landmark: Above Vijaya Bank, Opp. Amba Bajaj Showroom, Diagonally Opp. Bangalore Central', '12.9715987', '77.5945627', 'Nelivigi Eye Hospital is one of the leading Eye Care Hospital in Bangalore. Our team of experienced ophthalmologists is assisted by clinic staff experienced in caring for all kinds of patients.\r\nhe eyes, though the smallest part in the body needs the utmost care because of its complex structure. They constantly work to adjust to your changing environment, which enables you to have sharp focus, perceive depth, judge distance, gauge the size of objects and move around in the dark or bright light.', 'Bangalore', '80', 'Ophthalmology,ENT-specialist', '1455348375-54999168.jpg', 0, 0, '1455348375-78186525.jpg', 'Bellandur', 0),
(39, 'Vikhyath Eye and Retina Care Center', '#993, SRA Arcade, 1st Floor, Near Ammis Briyani, Babusapalya, Kalyan Nagar, Bangalore', '12.9715987', '77.5945627', 'Some of the services provided by the clinic are: Diabetic Retinopathy Lasers, Vitreo-Retinal Surgery, Optical Coherence Tomography (OCT), bscan and ROP Screening and laser for premature babies. Click on ''map'' to find directions to reach Vikhyath Eye and Retina Care Center.', 'Bangalore', '81', 'Ophthalmology,ENT-specialist', '1455348929-30435794.jpg', 0, 0, '1455348929-45307591.jpg,1455348929-35057163.jpg', 'Banashankari', 0),
(40, 'test clinic', 'Lahore, Punjab, Pakistan', '31.5546061', '74.3571581', 'asdfa', 'lahore', '10', 'Cosmetology,Plasctic Surgery', '', 1, 0, '', 'aasdfafd', 0);
-- --------------------------------------------------------
--
-- Table structure for table `tb_clinic_feedback`
--
CREATE TABLE IF NOT EXISTS `tb_clinic_feedback` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`ToClinicID` int(11) NOT NULL,
`FromUserID` int(11) NOT NULL,
`Feedback` varchar(255) NOT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=11 ;
--
-- Dumping data for table `tb_clinic_feedback`
--
INSERT INTO `tb_clinic_feedback` (`id`, `ToClinicID`, `FromUserID`, `Feedback`, `created_at`, `updated_at`) VALUES
(1, 6, 39, 'hygenic and clean', '2016-01-05 16:50:59', '2016-01-05 16:50:59'),
(2, 6, 39, 'Recommendable', '2016-01-05 16:51:13', '2016-01-05 16:51:13'),
(3, 6, 24, 'Cleanliness at it''s best', '2016-01-06 05:47:38', '2016-01-05 16:51:13'),
(4, 6, 25, 'Excellent Service', '2016-01-05 16:51:13', '2016-01-05 16:51:13'),
(5, 6, 26, 'Excellent', '2016-01-05 16:51:13', '2016-01-05 16:51:13'),
(6, 6, 28, 'Good', '2016-01-05 16:51:13', '2016-01-05 16:51:13'),
(7, 1, 10, 'Best CLinic for dental treatment', '2016-01-07 10:40:57', '2016-01-07 10:40:57'),
(8, 6, 41, 'Test Feedback', '2016-01-07 11:48:18', '2016-01-07 11:48:18'),
(9, 5, 11, 'Good Job', '2016-02-10 11:55:52', '2016-02-10 16:54:54'),
(10, 6, 11, 'nvbcvbncvbn', '2016-02-24 03:28:54', '2016-02-24 03:28:54');
-- --------------------------------------------------------
--
-- Table structure for table `tb_clinic_recommendation`
--
CREATE TABLE IF NOT EXISTS `tb_clinic_recommendation` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`ClinicID` int(11) NOT NULL,
`UserID` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=7 ;
--
-- Dumping data for table `tb_clinic_recommendation`
--
INSERT INTO `tb_clinic_recommendation` (`id`, `ClinicID`, `UserID`) VALUES
(1, 1, 11),
(4, 5, 11),
(6, 20, 11);
-- --------------------------------------------------------
--
-- Table structure for table `tb_clinic_schedule`
--
CREATE TABLE IF NOT EXISTS `tb_clinic_schedule` (
`ScheduleID` int(11) NOT NULL AUTO_INCREMENT,
`DoctorID` int(11) NOT NULL,
`ClinicID` int(11) NOT NULL,
`VisitTime` int(11) NOT NULL,
`entry_by` varchar(20) NOT NULL,
PRIMARY KEY (`ScheduleID`),
KEY `clinicSchedule_ClinicID_foreign` (`ClinicID`),
KEY `clinicSchedule_DoctorID_foreign` (`DoctorID`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=77 ;
--
-- Dumping data for table `tb_clinic_schedule`
--
INSERT INTO `tb_clinic_schedule` (`ScheduleID`, `DoctorID`, `ClinicID`, `VisitTime`, `entry_by`) VALUES
(16, 2, 1, 20, '10'),
(17, 3, 21, 20, '13'),
(18, 2, 5, 30, '10'),
(19, 2, 6, 20, '10'),
(26, 4, 6, 15, '14'),
(27, 4, 2, 20, '14'),
(29, 15, 7, 30, '43'),
(30, 15, 6, 15, '43'),
(31, 2, 17, 20, '10'),
(32, 16, 16, 15, '45'),
(33, 17, 10, 30, '46'),
(34, 18, 8, 30, '47'),
(35, 19, 12, 30, '48'),
(36, 10, 11, 30, '20'),
(37, 9, 7, 15, '19'),
(38, 20, 8, 45, '49'),
(39, 21, 11, 30, '50'),
(40, 21, 7, 20, '50'),
(41, 22, 13, 30, '51'),
(42, 23, 13, 30, '52'),
(43, 24, 14, 20, '53'),
(44, 24, 6, 15, '53'),
(45, 25, 6, 20, '54'),
(46, 8, 18, 15, '18'),
(47, 26, 15, 30, '55'),
(48, 27, 19, 45, '56'),
(49, 28, 20, 20, '57'),
(50, 29, 23, 30, '58'),
(51, 30, 24, 20, '59'),
(52, 4, 1, 20, '14'),
(53, 31, 7, 20, '62'),
(54, 31, 11, 30, '62'),
(55, 32, 17, 20, '63'),
(56, 33, 13, 30, '64'),
(57, 34, 26, 15, '65'),
(58, 34, 18, 20, '65'),
(59, 35, 27, 20, '66'),
(60, 36, 28, 15, '67'),
(61, 37, 29, 30, '68'),
(62, 38, 30, 30, '69'),
(63, 39, 31, 30, '70'),
(64, 39, 30, 45, '70'),
(65, 40, 15, 30, '71'),
(66, 41, 32, 30, '72'),
(67, 42, 33, 30, '73'),
(68, 43, 34, 30, '74'),
(69, 44, 32, 20, '75'),
(70, 44, 33, 30, '75'),
(71, 45, 35, 30, '76'),
(72, 46, 36, 20, '77'),
(73, 47, 36, 60, '78'),
(74, 48, 37, 30, '79'),
(75, 49, 38, 30, '80'),
(76, 50, 39, 20, '81');
-- --------------------------------------------------------
--
-- Table structure for table `tb_Days`
--
CREATE TABLE IF NOT EXISTS `tb_Days` (
`id` varchar(11) NOT NULL,
`Name` varchar(20) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `tb_Days`
--
INSERT INTO `tb_Days` (`id`, `Name`) VALUES
('Fri', 'Friday'),
('Mon', 'Monday'),
('Sat', 'Saturday'),
('Sun', 'Sunday'),
('Thu', 'Thursday'),
('Tue', 'Tuesday'),
('Wed', 'Wednesday');
-- --------------------------------------------------------
--
-- Table structure for table `tb_diagnosis`
--
CREATE TABLE IF NOT EXISTS `tb_diagnosis` (
`DiagnosisID` int(11) NOT NULL AUTO_INCREMENT,
`AppointmentID` int(11) NOT NULL,
`Description` varchar(255) NOT NULL,
`entry_by` varchar(255) NOT NULL,
PRIMARY KEY (`DiagnosisID`),
KEY `Diagnosis_AppointmentID_foreign` (`AppointmentID`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `tb_doctor`
--
CREATE TABLE IF NOT EXISTS `tb_doctor` (
`DoctorID` int(11) NOT NULL AUTO_INCREMENT,
`UserID` int(11) NOT NULL,
`Expertization` varchar(255) NOT NULL,
`Degree` varchar(255) NOT NULL,
`Experience` varchar(255) NOT NULL,
`entry_by` varchar(255) NOT NULL,
`timezone` varchar(100) NOT NULL DEFAULT 'UTC',
`Fee` float NOT NULL,
`Recommendation` bigint(20) NOT NULL,
`isSponsored` tinyint(4) NOT NULL,
`Cities` varchar(100) NOT NULL,
PRIMARY KEY (`DoctorID`),
KEY `Doctor_UserID_foreign` (`UserID`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=51 ;
--
-- Dumping data for table `tb_doctor`
--
INSERT INTO `tb_doctor` (`DoctorID`, `UserID`, `Expertization`, `Degree`, `Experience`, `entry_by`, `timezone`, `Fee`, `Recommendation`, `isSponsored`, `Cities`) VALUES
(2, 10, 'dentist,orthopedic', 'BDE', '3 year', '', 'Asia/Kolkata', 300, 7, 1, 'Mumbai,Bangalore'),
(3, 13, 'Gynecologist', 'MD', '3 year', '', 'UTC', 500, 0, 0, 'Mumbai,Bangalore'),
(4, 14, 'Dentist', 'BDE', '6 Year', '', 'Asia/Calcutta', 250, 5, 0, 'Bangalore,Rajkot,Mumbai'),
(5, 15, 'Ophthalmologist', 'M.D.,Ph.D. in ophthalmology', '2 Year', '', 'UTC', 400, 0, 0, ''),
(6, 16, 'Dermatologist', 'MD', '3 Year', '', 'UTC', 700, 0, 0, ''),
(7, 17, 'Homeopath', '', '11 Year', '', 'UTC', 100, 0, 0, ''),
(8, 18, 'Ayurveda', 'MD', '5', '', 'UTC', 350, 0, 0, 'Bangalore'),
(9, 19, 'Dermatologist', 'D.O.', '9', '', 'UTC', 200, 0, 0, 'Bangalore'),
(10, 20, 'Allergist/Immunologist', 'MBBS', '3', '', 'UTC', 200, 0, 0, 'Bangalore'),
(15, 43, 'Dermatologist', 'M.D', '3 year', '', 'Asia/Calcutta', 200, 0, 1, 'Bangalore'),
(16, 45, 'dentist,orthopedic', 'BDS', '3 year', '', 'Asia/Calcutta', 200, 0, 0, 'Bangalore'),
(17, 46, 'dentist', 'BDS', '7 year', '', 'Asia/Kolkata', 150, 5, 0, 'Rajkot'),
(18, 47, 'homeopath', 'BHMS , MSc', '15 year', '', 'Asia/Kolkata', 400, 0, 0, 'Bangalore'),
(19, 48, 'Allergist/Immunologist,Psychiatrist', 'PGMHA , MD', '20 year', '', 'UTC', 500, 0, 0, 'Bangalore'),
(20, 49, 'homeopath', 'BHMS , MD - Homeopathy', '3 year', '', 'Asia/Calcutta', 250, 0, 0, 'Bangalore'),
(21, 50, 'Dermatologist', 'MBBS , Diploma in Dermatology, Venereology and Leprosy', '7 year', '', 'Asia/Kolkata', 700, 0, 0, 'Bangalore'),
(22, 51, 'ayurvedic', 'BAMS, MD-Ayurveda', '17 year', '', 'Asia/Kolkata', 500, 0, 0, 'Bangalore'),
(23, 52, 'ayurvedic', 'BAMS', '8 year', '', 'UTC', 200, 0, 0, 'Bangalore'),
(24, 53, 'General Physician', 'MD , MBBS , dip MSc (Endocrinology)', '3 year', '', 'Asia/Kolkata', 200, 0, 0, 'Bangalore'),
(25, 54, 'ophthalmologist', 'MBBS , MS - Ophthalmology', '20 year', '', 'Asia/Kolkata', 350, 0, 0, 'Bangalore'),
(26, 55, 'Cardiologist', 'DM - Cardiology , MD - Cardiology , MBBS', '30 Years', '', 'Asia/Kolkata', 1000, 0, 0, 'Bangalore'),
(27, 56, 'Cardiologist', 'DM - Cardiology , MD - General Medicine , MBBS', '11 year', '', 'Asia/Kolkata', 800, 0, 0, 'Bangalore'),
(28, 57, 'Gastroenterologist', 'DM - Gastroenterology , MD , DNB - Gastroenterology , MBBS', '26 year', '', 'Asia/Kolkata', 500, 0, 0, 'Bangalore'),
(29, 58, 'Neurologist,Geriatric Neurologist', 'MBBS , MD - General Medicine , DM - Neurology', '11 year', '', 'Asia/Kolkata', 500, 0, 0, 'Bangalore'),
(30, 59, 'psychiatrist', 'MBBS , Ph. D - Psychiatry', '9 year', '', 'Asia/Kolkata', 500, 0, 0, 'Bangalore'),
(31, 62, 'Dermatologist', 'MD , MBBS', '25', '', 'Asia/Calcutta', 400, 0, 0, 'Bangalore'),
(32, 63, 'dentist,Orthodontist', 'BDS , MDS', '14 year', '', 'Asia/Calcutta', 300, 0, 0, 'Bangalore'),
(33, 64, 'ayurvedic', 'BAMS , PG Dip, MBA', '11 year', '', 'Asia/Calcutta', 250, 0, 0, 'Bangalore'),
(34, 65, 'ayurvedic', 'Md - Panchakarma , BAMS', '5 year', '', 'Asia/Calcutta', 150, 0, 0, 'Bangalore'),
(35, 66, 'homeopath', 'BHMS', '16 year', '', 'Asia/Calcutta', 400, 0, 0, 'Bangalore'),
(36, 67, 'homeopath', 'BHMS , MS Psychology', '15 year', '', 'Asia/Calcutta', 350, 0, 0, 'Bangalore'),
(37, 68, 'homeopath', 'MD , P.G.D.H.M, DHMS ', '32 year', '', 'Asia/Calcutta', 500, 0, 0, 'Bangalore'),
(38, 69, 'Cardiologist', 'MBBS, MD, DM', '31 year', '', 'Asia/Calcutta', 500, 0, 0, 'Bangalore'),
(39, 70, 'Cardiologist,Echocardiologist', 'MBBS , MRCP (UK) , Ph. D - Cardiology , CCT', '12 year', '', 'Asia/Calcutta', 450, 0, 0, 'Bangalore'),
(40, 71, 'Cardiologist', 'MBBS , Md. Clord ', '10 year', '', 'Asia/Calcutta', 400, 0, 0, 'Bangalore'),
(41, 72, 'Neurologist,Pediatrician', 'DM (Pediatric Neurology) , PGD ND , MNAMS(Pediatrics) , DNB (Pediatrics) , Diploma in Child Health (DCH) , MBBS', '13 year', '', 'Asia/Calcutta', 500, 0, 0, 'Bangalore'),
(42, 73, 'Neurologist', 'MBBS , MD - Medicine , DM - Neurology', '23 year', '', 'Asia/Calcutta', 350, 0, 0, 'Bangalore'),
(43, 74, 'Neurologist', 'MBBS , MD , Ph. D - Neurology', '26 year', '', 'Asia/Calcutta', 500, 0, 0, 'Bangalore'),
(44, 75, 'Neurologist', 'MBBS , MD - General Medicine , DM - Neurology', '19 year', '', 'Asia/Calcutta', 500, 0, 0, 'Bangalore'),
(45, 76, 'psychiatrist', 'MBBS , MRC Psychiatry', '18 year', '', 'Asia/Calcutta', 400, 0, 0, 'Bangalore'),
(46, 77, 'psychiatrist', 'MRC Psychiatry , MBBS', '17 year', '', 'Asia/Calcutta', 1000, 0, 0, 'Bangalore'),
(47, 78, 'psychiatrist', 'MBBS , DNB (Psychiatry)', '9 year', '', 'Asia/Calcutta', 600, 0, 0, 'Bangalore'),
(48, 79, 'Psychologist,psychiatrist', 'MBBS , M.D Psychiatry', '16 year', '', 'Asia/Calcutta', 850, 0, 0, 'Bangalore'),
(49, 80, 'Opthamologist,ENT-specialist', 'MBBS , DNB Ophthalmology , Fellowship in Anterior Segment (FIAS) , Fellowship in Advanced Cataract Surgery , Fellowship in Glaucoma', '17 year', '', 'Asia/Calcutta', 200, 0, 0, 'Bangalore'),
(50, 81, 'Opthamologist,ENT-specialist', 'MBBS , MS - Ophthalmology , Fellowship in Vitreoretinal Surgery', '9 year', '', 'Asia/Calcutta', 300, 0, 0, 'Bangalore');
-- --------------------------------------------------------
--
-- Table structure for table `tb_doctor_feedback`
--
CREATE TABLE IF NOT EXISTS `tb_doctor_feedback` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`ToDoctorID` int(11) NOT NULL,
`FromUserID` int(11) NOT NULL,
`Feedback` varchar(255) NOT NULL,
`created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`updated_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=5 ;
--
-- Dumping data for table `tb_doctor_feedback`
--
INSERT INTO `tb_doctor_feedback` (`id`, `ToDoctorID`, `FromUserID`, `Feedback`, `created_at`, `updated_at`) VALUES
(1, 2, 39, 'perfect diagnosis', '2016-01-08 16:44:03', '2016-01-08 16:44:03'),
(2, 26, 39, 'perfect diagnosis', '2016-01-08 16:44:03', '2016-01-08 16:44:03'),
(3, 4, 60, 'good doctor.. friendly and experienced. ', '2016-02-09 12:24:16', '2016-02-09 12:24:16'),
(4, 2, 11, 'sdfasdfafa asdfas', '2016-03-18 19:32:27', '2016-03-18 19:32:27');
-- --------------------------------------------------------
--
-- Table structure for table `tb_doctor_patient`
--
CREATE TABLE IF NOT EXISTS `tb_doctor_patient` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`DoctorUserID` int(11) NOT NULL,
`FamilyMemberID` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=23 ;
--
-- Dumping data for table `tb_doctor_patient`
--
INSERT INTO `tb_doctor_patient` (`id`, `DoctorUserID`, `FamilyMemberID`) VALUES
(1, 10, 39),
(2, 14, 41),
(5, 14, 39),
(6, 43, 11),
(8, 53, 1),
(9, 46, 1),
(10, 14, 60),
(11, 10, 11),
(12, 13, 11),
(13, 63, 1),
(14, 14, 11),
(15, 80, 1),
(16, 57, 11),
(17, 57, 1),
(18, 56, 11),
(19, 59, 11),
(20, 53, 11),
(21, 80, 11),
(22, 81, 11);
-- --------------------------------------------------------
--
-- Table structure for table `tb_doctor_recommendation`
--
CREATE TABLE IF NOT EXISTS `tb_doctor_recommendation` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`DoctorID` int(11) NOT NULL,
`UserID` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=4 ;
--
-- Dumping data for table `tb_doctor_recommendation`
--
INSERT INTO `tb_doctor_recommendation` (`id`, `DoctorID`, `UserID`) VALUES
(2, 16, 11),
(3, 15, 11);
-- --------------------------------------------------------
--
-- Table structure for table `tb_expertization`
--
CREATE TABLE IF NOT EXISTS `tb_expertization` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`Expertize` varchar(50) NOT NULL,
`display_name` varchar(50) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=19 ;
--
-- Dumping data for table `tb_expertization`
--
INSERT INTO `tb_expertization` (`id`, `Expertize`, `display_name`) VALUES
(1, 'dentist', 'dentist'),
(2, 'orthopedic', 'Orthopedic'),
(3, 'homeopath', 'homeopath'),
(4, 'Allergist/Immunologist', 'Allergist/Immunologist'),
(5, 'Psychologist', 'Psychologist'),
(6, 'Dermatologist', 'Dermatologist'),
(7, 'ayurvedic', 'ayurvedic'),
(8, 'General Physician', 'General Physician'),
(9, 'Opthamologist', 'Opthamologist'),
(10, 'Cardiologist', 'Cardiologist'),
(11, 'Gastroenterologist', 'Gastroenterologist'),
(12, 'Neurologist', 'Neurologist'),
(13, 'Geriatric Neurologist', 'Geriatric Neurologist'),
(14, 'psychiatrist', 'psychiatrist'),
(15, 'Orthodontist', 'Orthodontist'),
(16, 'Echocardiologist', 'Echocardiologist'),
(17, 'Pediatrician', 'Pediatrician'),
(18, 'ENT-specialist', 'ENT-specialist');
-- --------------------------------------------------------
--
-- Table structure for table `tb_groups`
--
CREATE TABLE IF NOT EXISTS `tb_groups` (
`group_id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(20) DEFAULT NULL,
`description` varchar(100) DEFAULT NULL,
`level` int(6) DEFAULT NULL,
PRIMARY KEY (`group_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=7 ;
--
-- Dumping data for table `tb_groups`
--
INSERT INTO `tb_groups` (`group_id`, `name`, `description`, `level`) VALUES
(1, 'Superadmin', 'Root Superadmin , should be as top level groups', 1),
(2, 'SalesPerson', 'Add clinics', 2),
(3, 'Doctors', '<p>Doctors will be added by sales person and clinic will be assigned to doctor</p>', 3),
(5, 'User', 'User can be a patient or person who will use the system.', 4),
(6, 'test', '', 0);
-- --------------------------------------------------------
--
-- Table structure for table `tb_groups_access`
--
CREATE TABLE IF NOT EXISTS `tb_groups_access` (
`id` int(6) NOT NULL AUTO_INCREMENT,
`group_id` int(6) DEFAULT NULL,
`module_id` int(6) DEFAULT NULL,
`access_data` text,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=848 ;
--
-- Dumping data for table `tb_groups_access`
--
INSERT INTO `tb_groups_access` (`id`, `group_id`, `module_id`, `access_data`) VALUES
(169, 1, 8, '{"is_global":"1","is_view":"1","is_detail":"1","is_add":"1","is_edit":"1","is_remove":"1","is_excel":"1"}'),
(170, 2, 8, '{"is_global":"0","is_view":"0","is_detail":"0","is_add":"0","is_edit":"0","is_remove":"0","is_excel":"0"}'),
(171, 3, 8, '{"is_global":"0","is_view":"0","is_detail":"0","is_add":"0","is_edit":"0","is_remove":"0","is_excel":"0"}'),
(199, 1, 7, '{"is_global":"1","is_view":"1","is_detail":"1","is_add":"1","is_edit":"1","is_remove":"1","is_excel":"1"}'),
(200, 2, 7, '{"is_global":"0","is_view":"0","is_detail":"0","is_add":"0","is_edit":"0","is_remove":"0","is_excel":"0"}'),
(201, 3, 7, '{"is_global":"0","is_view":"0","is_detail":"0","is_add":"0","is_edit":"0","is_remove":"0","is_excel":"0"}'),
(319, 1, 11, '{"is_global":"1","is_view":"1","is_detail":"1","is_add":"0","is_edit":"0","is_remove":"1","is_excel":"1"}'),
(320, 2, 11, '{"is_global":"1","is_view":"1","is_detail":"0","is_add":"0","is_edit":"0","is_remove":"0","is_excel":"0"}'),
(321, 3, 11, '{"is_global":"0","is_view":"0","is_detail":"0","is_add":"0","is_edit":"0","is_remove":"0","is_excel":"0"}'),
(374, 2, 21, '{"is_global":"0","is_view":"0","is_detail":"0","is_add":"0","is_edit":"0","is_remove":"0","is_excel":"0"}'),
(410, 2, 32, '{"is_global":"1","is_view":"1","is_detail":"1","is_add":"1","is_edit":"1","is_remove":"1","is_excel":"1"}'),
(452, 1, 1, '{"is_global":"1","is_view":"1","is_detail":"1","is_add":"1","is_edit":"1","is_remove":"1","is_excel":"1"}'),
(453, 2, 1, '{"is_global":"1","is_view":"1","is_detail":"1","is_add":"1","is_edit":"1","is_remove":"1","is_excel":"1"}'),
(454, 3, 1, '{"is_global":"1","is_view":"1","is_detail":"1","is_add":"1","is_edit":"1","is_remove":"1","is_excel":"1"}'),
(455, 4, 1, '{"is_global":"0","is_view":"0","is_detail":"0","is_add":"0","is_edit":"0","is_remove":"0","is_excel":"0"}'),
(456, 5, 1, '{"is_global":"0","is_view":"0","is_detail":"0","is_add":"0","is_edit":"0","is_remove":"0","is_excel":"0"}'),
(560, 4, 51, '{"is_global":"0","is_view":"1","is_detail":"1","is_add":"1","is_edit":"1","is_remove":"1","is_excel":"1"}'),
(567, 1, 52, '{"is_global":"1","is_view":"1","is_detail":"1","is_add":"1","is_edit":"1","is_remove":"1","is_excel":"1"}'),
(568, 2, 52, '{"is_global":"0","is_view":"0","is_detail":"0","is_add":"0","is_edit":"0","is_remove":"0","is_excel":"0"}'),
(569, 3, 52, '{"is_global":"0","is_view":"1","is_detail":"1","is_add":"1","is_edit":"1","is_remove":"1","is_excel":"1"}'),
(570, 4, 52, '{"is_global":"0","is_view":"1","is_detail":"1","is_add":"1","is_edit":"1","is_remove":"1","is_excel":"1"}'),
(571, 5, 52, '{"is_global":"0","is_view":"1","is_detail":"1","is_add":"0","is_edit":"0","is_remove":"0","is_excel":"1"}'),
(597, 1, 42, '{"is_global":"1","is_view":"1","is_detail":"1","is_add":"0","is_edit":"0","is_remove":"0","is_excel":"1"}'),
(598, 2, 42, '{"is_global":"0","is_view":"0","is_detail":"0","is_add":"0","is_edit":"0","is_remove":"0","is_excel":"0"}'),
(599, 3, 42, '{"is_global":"0","is_view":"1","is_detail":"1","is_add":"1","is_edit":"1","is_remove":"1","is_excel":"1"}'),
(600, 4, 42, '{"is_global":"0","is_view":"0","is_detail":"0","is_add":"0","is_edit":"0","is_remove":"0","is_excel":"0"}'),
(601, 5, 42, '{"is_global":"0","is_view":"0","is_detail":"0","is_add":"0","is_edit":"0","is_remove":"0","is_excel":"0"}'),
(630, 4, 56, '{"is_global":"0","is_view":"1","is_detail":"1","is_add":"0","is_edit":"0","is_remove":"0","is_excel":"0"}'),
(655, 4, 48, '{"is_global":"0","is_view":"1","is_detail":"1","is_add":"1","is_edit":"1","is_remove":"1","is_excel":"1"}'),
(662, 1, 59, '{"is_global":"1","is_view":"1","is_detail":"1","is_add":"1","is_edit":"1","is_remove":"1","is_excel":"1"}'),
(663, 2, 59, '{"is_global":"0","is_view":"0","is_detail":"0","is_add":"0","is_edit":"0","is_remove":"0","is_excel":"0"}'),
(664, 3, 59, '{"is_global":"0","is_view":"1","is_detail":"1","is_add":"1","is_edit":"1","is_remove":"1","is_excel":"1"}'),
(665, 4, 59, '{"is_global":"0","is_view":"1","is_detail":"1","is_add":"1","is_edit":"1","is_remove":"1","is_excel":"1"}'),
(666, 5, 59, '{"is_global":"0","is_view":"0","is_detail":"0","is_add":"0","is_edit":"0","is_remove":"0","is_excel":"0"}'),
(670, 4, 60, '{"is_global":"0","is_view":"0","is_detail":"0","is_add":"0","is_edit":"0","is_remove":"0","is_excel":"0"}'),
(675, 4, 58, '{"is_global":"0","is_view":"1","is_detail":"1","is_add":"1","is_edit":"1","is_remove":"1","is_excel":"1"}'),
(683, 1, 62, '{"is_global":"1","is_view":"1","is_detail":"1","is_add":"1","is_edit":"1","is_remove":"1","is_excel":"1"}'),
(684, 3, 62, '{"is_global":"0","is_view":"1","is_detail":"1","is_add":"1","is_edit":"1","is_remove":"1","is_excel":"1"}'),
(685, 5, 62, '{"is_global":"0","is_view":"1","is_detail":"1","is_add":"0","is_edit":"0","is_remove":"0","is_excel":"1"}'),
(686, 1, 63, '{"is_global":"0","is_view":"1","is_detail":"1","is_add":"1","is_edit":"1","is_remove":"1","is_excel":"1"}'),
(687, 3, 63, '{"is_global":"0","is_view":"1","is_detail":"1","is_add":"1","is_edit":"1","is_remove":"1","is_excel":"1"}'),
(688, 5, 63, '{"is_global":"0","is_view":"1","is_detail":"1","is_add":"1","is_edit":"1","is_remove":"1","is_excel":"1"}'),
(713, 1, 32, '{"is_global":"1","is_view":"1","is_detail":"1","is_add":"1","is_edit":"1","is_remove":"1","is_excel":"1"}'),
(714, 3, 32, '{"is_global":"0","is_view":"1","is_detail":"1","is_add":"1","is_edit":"1","is_remove":"1","is_excel":"1"}'),
(715, 5, 32, '{"is_global":"0","is_view":"1","is_detail":"1","is_add":"1","is_edit":"1","is_remove":"1","is_excel":"1"}'),
(728, 1, 21, '{"is_global":"0","is_view":"1","is_detail":"1","is_add":"1","is_edit":"1","is_remove":"1","is_excel":"1"}'),
(729, 3, 21, '{"is_global":"0","is_view":"1","is_detail":"1","is_add":"1","is_edit":"1","is_remove":"1","is_excel":"1"}'),
(730, 5, 21, '{"is_global":"0","is_view":"1","is_detail":"1","is_add":"1","is_edit":"1","is_remove":"1","is_excel":"1"}'),
(739, 1, 60, '{"is_global":"1","is_view":"1","is_detail":"1","is_add":"1","is_edit":"1","is_remove":"1","is_excel":"1"}'),
(740, 2, 60, '{"is_global":"0","is_view":"1","is_detail":"1","is_add":"1","is_edit":"1","is_remove":"1","is_excel":"1"}'),
(741, 3, 60, '{"is_global":"0","is_view":"0","is_detail":"0","is_add":"0","is_edit":"0","is_remove":"0","is_excel":"0"}'),
(742, 5, 60, '{"is_global":"0","is_view":"0","is_detail":"0","is_add":"0","is_edit":"0","is_remove":"0","is_excel":"0"}'),
(751, 1, 48, '{"is_global":"0","is_view":"0","is_detail":"0","is_add":"0","is_edit":"0","is_remove":"0","is_excel":"0"}'),
(752, 2, 48, '{"is_global":"0","is_view":"0","is_detail":"0","is_add":"0","is_edit":"0","is_remove":"0","is_excel":"0"}'),
(753, 3, 48, '{"is_global":"0","is_view":"1","is_detail":"1","is_add":"0","is_edit":"1","is_remove":"0","is_excel":"1"}'),
(754, 5, 48, '{"is_global":"0","is_view":"0","is_detail":"0","is_add":"0","is_edit":"0","is_remove":"0","is_excel":"0"}'),
(795, 1, 68, '{"is_global":"1","is_view":"1","is_detail":"1","is_add":"1","is_edit":"1","is_remove":"0","is_excel":"1"}'),
(796, 2, 68, '{"is_global":"0","is_view":"0","is_detail":"0","is_add":"0","is_edit":"0","is_remove":"0","is_excel":"0"}'),
(797, 3, 68, '{"is_global":"0","is_view":"0","is_detail":"0","is_add":"0","is_edit":"0","is_remove":"0","is_excel":"0"}'),
(798, 5, 68, '{"is_global":"0","is_view":"0","is_detail":"0","is_add":"0","is_edit":"0","is_remove":"0","is_excel":"0"}'),
(803, 1, 67, '{"is_global":"0","is_view":"1","is_detail":"1","is_add":"1","is_edit":"1","is_remove":"1","is_excel":"1"}'),
(804, 2, 67, '{"is_global":"0","is_view":"1","is_detail":"1","is_add":"1","is_edit":"1","is_remove":"1","is_excel":"1"}'),
(805, 3, 67, '{"is_global":"0","is_view":"1","is_detail":"1","is_add":"1","is_edit":"1","is_remove":"1","is_excel":"1"}'),
(806, 5, 67, '{"is_global":"0","is_view":"0","is_detail":"0","is_add":"0","is_edit":"0","is_remove":"0","is_excel":"0"}'),
(811, 1, 35, '{"is_global":"1","is_view":"1","is_detail":"1","is_add":"0","is_edit":"0","is_remove":"0","is_excel":"1"}'),
(812, 2, 35, '{"is_global":"0","is_view":"0","is_detail":"1","is_add":"0","is_edit":"0","is_remove":"0","is_excel":"0"}'),
(813, 3, 35, '{"is_global":"0","is_view":"0","is_detail":"1","is_add":"0","is_edit":"0","is_remove":"0","is_excel":"0"}'),
(814, 5, 35, '{"is_global":"0","is_view":"0","is_detail":"1","is_add":"0","is_edit":"0","is_remove":"0","is_excel":"0"}'),
(823, 1, 58, '{"is_global":"0","is_view":"1","is_detail":"1","is_add":"1","is_edit":"1","is_remove":"0","is_excel":"1"}'),
(824, 2, 58, '{"is_global":"0","is_view":"1","is_detail":"1","is_add":"1","is_edit":"1","is_remove":"1","is_excel":"1"}'),
(825, 3, 58, '{"is_global":"0","is_view":"1","is_detail":"1","is_add":"1","is_edit":"1","is_remove":"0","is_excel":"1"}'),
(826, 5, 58, '{"is_global":"0","is_view":"1","is_detail":"1","is_add":"1","is_edit":"1","is_remove":"0","is_excel":"1"}'),
(827, 1, 51, '{"is_global":"0","is_view":"1","is_detail":"1","is_add":"0","is_edit":"0","is_remove":"0","is_excel":"1"}'),
(828, 2, 51, '{"is_global":"0","is_view":"1","is_detail":"1","is_add":"0","is_edit":"0","is_remove":"0","is_excel":"1"}'),
(829, 3, 51, '{"is_global":"0","is_view":"1","is_detail":"1","is_add":"1","is_edit":"1","is_remove":"1","is_excel":"1"}'),
(830, 5, 51, '{"is_global":"0","is_view":"1","is_detail":"1","is_add":"0","is_edit":"0","is_remove":"0","is_excel":"1"}'),
(831, 1, 65, '{"is_global":"0","is_view":"1","is_detail":"1","is_add":"1","is_edit":"1","is_remove":"1","is_excel":"1"}'),
(832, 2, 65, '{"is_global":"0","is_view":"1","is_detail":"1","is_add":"1","is_edit":"1","is_remove":"1","is_excel":"1"}'),
(833, 3, 65, '{"is_global":"0","is_view":"1","is_detail":"1","is_add":"1","is_edit":"1","is_remove":"1","is_excel":"1"}'),
(834, 5, 65, '{"is_global":"0","is_view":"1","is_detail":"1","is_add":"1","is_edit":"1","is_remove":"1","is_excel":"1"}'),
(835, 1, 56, '{"is_global":"1","is_view":"1","is_detail":"1","is_add":"1","is_edit":"1","is_remove":"1","is_excel":"1"}'),
(836, 2, 56, '{"is_global":"0","is_view":"1","is_detail":"1","is_add":"1","is_edit":"1","is_remove":"1","is_excel":"1"}'),
(837, 3, 56, '{"is_global":"0","is_view":"1","is_detail":"1","is_add":"1","is_edit":"1","is_remove":"1","is_excel":"1"}'),
(838, 5, 56, '{"is_global":"0","is_view":"0","is_detail":"0","is_add":"0","is_edit":"0","is_remove":"0","is_excel":"0"}'),
(839, 1, 66, '{"is_global":"1","is_view":"1","is_detail":"1","is_add":"1","is_edit":"0","is_remove":"0","is_excel":"1"}'),
(840, 2, 66, '{"is_global":"0","is_view":"0","is_detail":"0","is_add":"0","is_edit":"0","is_remove":"0","is_excel":"0"}'),
(841, 3, 66, '{"is_global":"0","is_view":"0","is_detail":"0","is_add":"0","is_edit":"0","is_remove":"0","is_excel":"0"}'),
(842, 5, 66, '{"is_global":"0","is_view":"0","is_detail":"0","is_add":"0","is_edit":"0","is_remove":"0","is_excel":"0"}'),
(843, 1, 2, '{"is_global":"1","is_view":"1","is_detail":"1","is_add":"1","is_edit":"1","is_remove":"1","is_excel":"1"}'),
(844, 2, 2, '{"is_global":"1","is_view":"1","is_detail":"1","is_add":"0","is_edit":"0","is_remove":"0","is_excel":"0"}'),
(845, 3, 2, '{"is_global":"0","is_view":"0","is_detail":"0","is_add":"0","is_edit":"0","is_remove":"0","is_excel":"0"}'),
(846, 5, 2, '{"is_global":"0","is_view":"0","is_detail":"0","is_add":"0","is_edit":"0","is_remove":"0","is_excel":"0"}'),
(847, 6, 2, '{"is_global":"1","is_view":"1","is_detail":"1","is_add":"1","is_edit":"1","is_remove":"1","is_excel":"1"}');
-- --------------------------------------------------------
--
-- Table structure for table `tb_logs`
--
CREATE TABLE IF NOT EXISTS `tb_logs` (
`auditID` int(20) NOT NULL AUTO_INCREMENT,
`ipaddress` varchar(50) DEFAULT NULL,
`user_id` int(11) DEFAULT NULL,
`module` varchar(50) DEFAULT NULL,
`task` varchar(50) DEFAULT NULL,
`note` text,
`logdate` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`auditID`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=402 ;
--
-- Dumping data for table `tb_logs`
--
INSERT INTO `tb_logs` (`auditID`, `ipaddress`, `user_id`, `module`, `task`, `note`, `logdate`) VALUES
(24, '150.107.101.86', 1, 'doctor', 'save', 'New Data with ID 1 Has been Inserted !', '2015-11-30 07:13:10'),
(25, '150.107.101.86', 1, 'clinic', 'save', 'New Data with ID 1 Has been Inserted !', '2015-11-30 07:51:06'),
(26, '150.107.101.86', 1, 'clinicschedule', 'save', 'New Data with ID 2 Has been Inserted !', '2015-11-30 10:36:53'),
(27, '150.107.101.86', 1, 'clinicschedule', 'save', 'Data with ID 2 Has been Updated !', '2015-11-30 10:43:43'),
(28, '150.107.101.86', 1, 'clinicschedule', 'save', 'New Data with ID 3 Has been Inserted !', '2015-11-30 12:20:53'),
(29, '223.255.246.203', 1, 'clinicschedule', 'delete', 'ID : 2,3 , Has Been Removed Successfull', '2015-11-30 12:55:53'),
(30, '223.255.246.203', 1, 'clinicschedule', 'save', 'New Data with ID 5 Has been Inserted !', '2015-11-30 13:49:06'),
(31, '223.255.246.203', 1, 'clinicschedule', 'save', 'Data with ID 5 Has been Updated !', '2015-11-30 14:03:34'),
(32, '223.255.246.203', 1, 'clinicschedule', 'save', 'Data with ID 5 Has been Updated !', '2015-11-30 14:03:39'),
(33, '223.255.246.203', 1, 'clinicschedule', 'save', 'Data with ID 5 Has been Updated !', '2015-11-30 14:10:15'),
(34, '223.255.246.203', 1, 'clinicschedule', 'save', 'Data with ID 5 Has been Updated !', '2015-12-01 05:06:53'),
(35, '223.255.246.203', 1, 'clinicschedule', 'save', 'Data with ID 5 Has been Updated !', '2015-12-01 05:07:16'),
(36, '223.255.246.203', 1, 'clinicschedule', 'save', 'Data with ID 5 Has been Updated !', '2015-12-01 05:07:29'),
(37, '223.255.246.203', 1, 'clinicschedule', 'save', 'Data with ID 5 Has been Updated !', '2015-12-01 05:08:32'),
(38, '223.255.246.203', 1, 'clinicschedule', 'save', 'Data with ID 5 Has been Updated !', '2015-12-01 05:08:47'),
(39, '223.255.246.203', 1, 'clinicschedule', 'save', 'Data with ID 5 Has been Updated !', '2015-12-01 05:20:54'),
(40, '103.250.189.6', 1, 'clinic', 'save', 'New Data with ID 2 Has been Inserted !', '2015-12-01 06:41:27'),
(41, '103.250.189.6', 1, 'clinicschedule', 'save', 'New Data with ID 6 Has been Inserted !', '2015-12-01 06:41:58'),
(42, '103.250.189.6', 1, 'clinicschedule', 'save', 'Data with ID 6 Has been Updated !', '2015-12-01 06:42:38'),
(43, '103.250.189.6', 1, 'clinicschedule', 'delete', 'ID : 6 , Has Been Removed Successfull', '2015-12-01 06:52:16'),
(44, '150.107.101.221', 1, 'staff', 'save', 'New Data with ID 1 Has been Inserted !', '2015-12-01 07:53:14'),
(45, '150.107.101.221', 1, 'staff', 'save', 'Data with ID 1 Has been Updated !', '2015-12-01 07:58:27'),
(46, '150.107.101.221', 1, 'calendar', 'save', 'New Data with ID 800 Has been Inserted !', '2015-12-01 08:10:01'),
(47, '150.107.101.221', 1, 'calendar', 'save', 'New Data with ID 801 Has been Inserted !', '2015-12-01 08:10:16'),
(48, '150.107.101.221', 1, 'calendar', 'save', 'Data with ID 14 Has been Updated !', '2015-12-01 08:13:16'),
(49, '150.107.101.221', 1, 'calendar', 'save', 'Data with ID 14 Has been Updated !', '2015-12-01 08:13:31'),
(50, '150.107.101.221', 1, 'calendar', 'save', 'New Data with ID 802 Has been Inserted !', '2015-12-01 08:15:18'),
(51, '43.248.34.124', 1, 'doctor', 'save', 'New Data with ID 2 Has been Inserted !', '2015-12-01 10:49:24'),
(52, '43.248.34.124', 1, 'appointment', 'save', 'New Data with ID 1 Has been Inserted !', '2015-12-01 12:54:43'),
(53, '43.248.34.124', 1, 'appointment', 'save', 'New Data with ID 2 Has been Inserted !', '2015-12-01 12:55:18'),
(54, '43.248.34.124', 10, 'patient', 'save', 'New Data with ID 5 Has been Inserted !', '2015-12-01 13:04:18'),
(55, '103.250.189.77', 1, 'medicine', 'save', 'New Data with ID 1 Has been Inserted !', '2015-12-02 06:30:38'),
(56, '103.250.189.77', 1, 'prescription', 'save', 'New Data with ID 1 Has been Inserted !', '2015-12-02 06:47:50'),
(57, '103.250.189.77', 1, 'prescription', 'save', 'New Data with ID 2 Has been Inserted !', '2015-12-02 06:48:56'),
(58, '103.250.189.77', 1, 'prescription', 'save', 'New Data with ID 3 Has been Inserted !', '2015-12-02 06:49:34'),
(59, '103.250.189.77', 1, 'prescription', 'save', 'New Data with ID 4 Has been Inserted !', '2015-12-02 06:50:04'),
(60, '103.250.189.77', 1, 'prescription', 'delete', 'ID : 1,2,3,4 , Has Been Removed Successfull', '2015-12-02 06:50:12'),
(61, '103.250.189.77', 1, 'prescription', 'save', 'New Data with ID 5 Has been Inserted !', '2015-12-02 06:52:23'),
(62, '103.250.189.77', 1, 'prescription', 'save', 'Data with ID 5 Has been Updated !', '2015-12-02 07:01:04'),
(63, '103.250.189.77', 1, 'prescription', 'save', 'Data with ID 5 Has been Updated !', '2015-12-02 07:01:18'),
(64, '103.250.189.77', 1, 'prescription', 'save', 'New Data with ID 7 Has been Inserted !', '2015-12-02 07:07:09'),
(65, '103.250.189.77', 1, 'prescription', 'delete', 'ID : 7 , Has Been Removed Successfull', '2015-12-02 07:07:42'),
(66, '103.250.189.77', 1, 'prescription', 'save', 'New Data with ID 8 Has been Inserted !', '2015-12-02 07:08:23'),
(67, '103.250.189.77', 10, 'patient', 'delete', 'ID : 4 , Has Been Removed Successfull', '2015-12-02 07:27:56'),
(68, '103.250.189.77', 1, 'clinicschedule', 'save', 'New Data with ID 7 Has been Inserted !', '2015-12-02 08:01:56'),
(69, '103.250.189.77', 1, 'clinicschedule', 'save', 'Data with ID 7 Has been Updated !', '2015-12-02 08:03:06'),
(70, '103.250.189.77', 1, 'clinicschedule', 'save', 'New Data with ID 8 Has been Inserted !', '2015-12-02 08:03:35'),
(71, '103.250.189.77', 1, 'clinicschedule', 'delete', 'ID : 8 , Has Been Removed Successfull', '2015-12-02 08:03:57'),
(72, '103.250.189.77', 1, 'prescription', 'save', 'New Data with ID 9 Has been Inserted !', '2015-12-02 10:01:28'),
(73, '103.250.189.77', 1, 'prescription', 'save', 'Data with ID 9 Has been Updated !', '2015-12-02 10:02:12'),
(74, '103.250.189.77', 1, 'clinicschedule', 'save', 'Data with ID 7 Has been Updated !', '2015-12-02 10:04:58'),
(75, '103.250.189.77', 1, 'clinicschedule', 'save', 'Data with ID 7 Has been Updated !', '2015-12-02 10:05:14'),
(76, '103.250.189.77', 1, 'calendar', 'delete', 'ID : 802 , Has Been Removed Successfull', '2015-12-02 10:57:22'),
(77, '103.250.189.77', 1, 'appointment', 'save', 'New Data with ID 3 Has been Inserted !', '2015-12-02 11:23:33'),
(78, '103.250.189.77', 1, 'appointment', 'save', 'Data with ID 3 Has been Updated !', '2015-12-02 11:24:15'),
(79, '103.250.189.77', 1, 'appointment', 'save', 'New Data with ID 4 Has been Inserted !', '2015-12-02 11:25:00'),
(80, '103.250.189.77', 1, 'clinicschedule', 'save', 'Data with ID 7 Has been Updated !', '2015-12-02 11:43:52'),
(81, '103.240.76.18', 10, 'clinicschedule', 'save', 'New Data with ID 9 Has been Inserted !', '2015-12-02 13:51:27'),
(82, '103.240.76.18', 1, 'clinicschedule', 'save', 'Data with ID 9 Has been Updated !', '2015-12-02 13:52:10'),
(83, '103.240.76.18', 10, 'clinicschedule', 'save', 'Data with ID 9 Has been Updated !', '2015-12-02 13:53:37'),
(84, '103.240.76.18', 10, 'clinicschedule', 'save', 'New Data with ID 10 Has been Inserted !', '2015-12-02 13:56:48'),
(85, '103.240.76.18', 1, 'clinicschedule', 'delete', 'ID : 9,10 , Has Been Removed Successfull', '2015-12-02 14:09:47'),
(86, '103.240.76.18', 10, 'clinicschedule', 'save', 'New Data with ID 13 Has been Inserted !', '2015-12-02 14:10:16'),
(87, '103.240.76.18', 10, 'clinicschedule', 'save', 'Data with ID 13 Has been Updated !', '2015-12-02 14:10:30'),
(88, '103.240.76.18', 1, 'clinicschedule', 'save', 'Data with ID 13 Has been Updated !', '2015-12-02 14:10:47'),
(89, '103.240.76.18', 10, 'clinicschedule', 'save', 'Data with ID 13 Has been Updated !', '2015-12-02 14:12:13'),
(90, '1.22.195.229', 10, 'clinicschedule', 'save', 'Data with ID 13 Has been Updated !', '2015-12-02 17:32:12'),
(91, '1.22.195.229', 10, 'clinicschedule', 'save', 'New Data with ID 14 Has been Inserted !', '2015-12-02 17:53:42'),
(92, '1.22.195.229', 10, 'clinicschedule', 'save', 'Data with ID 14 Has been Updated !', '2015-12-02 17:54:08'),
(93, '1.22.195.229', 10, 'clinicschedule', 'save', 'New Data with ID 15 Has been Inserted !', '2015-12-02 18:05:02'),
(94, '1.22.195.229', 10, 'clinicschedule', 'save', 'New Data with ID 16 Has been Inserted !', '2015-12-02 18:23:23'),
(95, '103.250.189.86', 1, 'clinic', 'save', 'Data with ID 1 Has been Updated !', '2015-12-03 12:41:06'),
(96, '103.250.189.86', 1, 'clinic', 'save', 'New Data with ID 3 Has been Inserted !', '2015-12-03 12:41:18'),
(97, '103.250.189.86', 1, 'clinic', 'delete', 'ID : 3 , Has Been Removed Successfull', '2015-12-03 12:41:26'),
(98, '103.250.189.86', 1, 'clinic', 'save', 'New Data with ID 4 Has been Inserted !', '2015-12-03 12:42:02'),
(99, '103.250.189.86', 1, 'clinic', 'delete', 'ID : 4 , Has Been Removed Successfull', '2015-12-03 12:42:08'),
(100, '103.250.189.86', 1, 'clinic', 'save', 'New Data with ID 5 Has been Inserted !', '2015-12-03 12:42:15'),
(101, '103.250.189.86', 1, 'clinic', 'save', 'New Data with ID 6 Has been Inserted !', '2015-12-03 12:45:30'),
(102, '103.250.189.86', 1, 'clinic', 'save', 'Data with ID 5 Has been Updated !', '2015-12-03 12:45:40'),
(103, '103.250.189.86', 1, 'clinic', 'save', 'Data with ID 5 Has been Updated !', '2015-12-03 12:46:13'),
(104, '103.250.189.86', 1, 'clinic', 'save', 'New Data with ID 7 Has been Inserted !', '2015-12-03 12:52:45'),
(105, '103.250.189.86', 1, 'clinic', 'save', 'New Data with ID 8 Has been Inserted !', '2015-12-03 12:53:56'),
(106, '103.250.189.86', 1, 'clinic', 'save', 'Data with ID 8 Has been Updated !', '2015-12-03 12:53:59'),
(107, '43.248.34.46', 10, 'clinicschedule', 'save', 'Data with ID 16 Has been Updated !', '2015-12-04 11:46:25'),
(108, '43.248.34.46', 10, 'clinicschedule', 'save', 'Data with ID 16 Has been Updated !', '2015-12-04 11:51:57'),
(109, '43.248.34.46', 10, 'clinicschedule', 'save', 'Data with ID 16 Has been Updated !', '2015-12-04 13:13:08'),
(110, '43.248.34.46', 10, 'clinicschedule', 'save', 'Data with ID 16 Has been Updated !', '2015-12-04 13:23:25'),
(111, '43.248.34.46', 10, 'clinicschedule', 'save', 'Data with ID 16 Has been Updated !', '2015-12-04 13:28:53'),
(112, '43.248.34.46', 10, 'clinicschedule', 'save', 'Data with ID 16 Has been Updated !', '2015-12-04 13:33:28'),
(113, '43.248.34.46', 10, 'clinicschedule', 'save', 'Data with ID 16 Has been Updated !', '2015-12-04 13:35:36'),
(114, '103.7.81.220', 10, 'clinicschedule', 'save', 'New Data with ID 18 Has been Inserted !', '2015-12-04 16:42:40'),
(115, '182.69.181.48', 10, 'clinicschedule', 'save', 'Data with ID 18 Has been Updated !', '2015-12-04 16:44:59'),
(116, '103.7.81.220', 10, 'clinicschedule', 'save', 'New Data with ID 19 Has been Inserted !', '2015-12-04 16:45:56'),
(117, '103.7.81.220', 10, 'clinicschedule', 'save', 'Data with ID 18 Has been Updated !', '2015-12-04 16:48:58'),
(118, '103.7.81.220', 1, 'doctor', 'save', 'New Data with ID 11 Has been Inserted !', '2015-12-04 16:55:03'),
(119, '103.7.81.220', 10, 'prescription', 'save', 'New Data with ID 11 Has been Inserted !', '2015-12-04 16:57:57'),
(120, '182.69.181.48', 10, 'prescription', 'save', 'New Data with ID 13 Has been Inserted !', '2015-12-04 16:58:42'),
(121, '103.250.189.132', 10, 'clinicschedule', 'save', 'Data with ID 17 Has been Updated !', '2015-12-05 10:49:21'),
(122, '103.250.189.132', 10, 'clinicschedule', 'save', 'Data with ID 16 Has been Updated !', '2015-12-05 10:53:47'),
(123, '103.250.189.132', 1, 'prescription', 'save', 'Data with ID 10 Has been Updated !', '2015-12-05 13:01:30'),
(124, '103.250.189.132', 1, 'prescription', 'save', 'Data with ID 10 Has been Updated !', '2015-12-05 13:01:39'),
(125, '43.248.34.162', 10, 'patient', 'save', 'New Data with ID 7 Has been Inserted !', '2015-12-07 13:15:31'),
(126, '103.240.76.50', 10, 'patient', 'save', 'New Data with ID 8 Has been Inserted !', '2015-12-07 13:49:21'),
(127, '103.240.76.19', 10, 'patient', 'save', 'Data with ID 6 Has been Updated !', '2015-12-08 07:55:09'),
(128, '103.240.76.19', 10, 'clinicschedule', 'save', 'Data with ID 16 Has been Updated !', '2015-12-08 10:21:06'),
(129, '103.240.76.19', 10, 'clinicschedule', 'save', 'Data with ID 16 Has been Updated !', '2015-12-08 11:15:51'),
(130, '103.240.76.19', 10, 'clinicschedule', 'save', 'Data with ID 16 Has been Updated !', '2015-12-08 11:16:23'),