-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathlarahrm-with-sample-data.sql
More file actions
1141 lines (1032 loc) · 96.8 KB
/
larahrm-with-sample-data.sql
File metadata and controls
1141 lines (1032 loc) · 96.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
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.1.14
-- http://www.phpmyadmin.net
--
-- Host: 127.0.0.1
-- Generation Time: May 03, 2016 at 12:59 PM
-- Server version: 5.6.17
-- PHP Version: 5.5.12
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: `larahrm`
--
-- --------------------------------------------------------
--
-- Table structure for table `absences`
--
CREATE TABLE IF NOT EXISTS `absences` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL,
`leave_type_id` int(11) NOT NULL,
`reason` text COLLATE utf8_unicode_ci NOT NULL,
`date` date NOT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `attendances`
--
CREATE TABLE IF NOT EXISTS `attendances` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL,
`date` date NOT NULL,
`time_in` datetime NOT NULL,
`time_out` datetime NOT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=7 ;
--
-- Dumping data for table `attendances`
--
INSERT INTO `attendances` (`id`, `user_id`, `date`, `time_in`, `time_out`, `deleted_at`, `created_at`, `updated_at`) VALUES
(1, 1, '2016-05-01', '2016-05-03 13:15:00', '2016-05-03 13:15:00', NULL, '2016-05-02 21:22:18', '2016-05-02 21:22:18'),
(2, 2, '2016-05-03', '2016-05-03 13:15:00', '2016-05-03 13:15:00', NULL, '2016-05-02 21:23:10', '2016-05-03 01:20:40'),
(3, 2, '2016-05-04', '2016-05-03 13:15:00', '2016-05-03 13:15:00', NULL, '2016-05-02 21:23:18', '2016-05-03 01:20:40'),
(4, 2, '2016-05-05', '2016-05-03 10:00:00', '2016-05-03 23:01:00', NULL, '2016-05-03 01:19:43', '2016-05-03 01:20:40'),
(5, 2, '2016-05-02', '2016-05-03 19:00:00', '2016-05-03 09:20:00', NULL, '2016-05-03 01:20:19', '2016-05-03 01:20:40'),
(6, 2, '2016-05-06', '2016-05-03 11:30:00', '2016-05-03 07:00:00', NULL, '2016-05-03 01:20:19', '2016-05-03 01:20:40');
-- --------------------------------------------------------
--
-- Table structure for table `awards`
--
CREATE TABLE IF NOT EXISTS `awards` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL,
`award_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`gift_item` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`cash_price` decimal(10,2) NOT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=51 ;
--
-- Dumping data for table `awards`
--
INSERT INTO `awards` (`id`, `user_id`, `award_name`, `gift_item`, `cash_price`, `deleted_at`, `created_at`, `updated_at`) VALUES
(1, 26, 'Reiciendis.', 'Quasi dolor est ut.', '4720.00', NULL, '2016-05-02 21:20:07', '2016-05-02 21:20:07'),
(2, 35, 'Expedita ipsa totam.', 'Quas qui iusto et.', '1105.00', NULL, '2016-05-02 21:20:07', '2016-05-02 21:20:07'),
(3, 11, 'Recusandae fugiat.', 'Id dolorem dolor.', '3210.00', NULL, '2016-05-02 21:20:07', '2016-05-02 21:20:07'),
(4, 27, 'Facilis a maiores.', 'Consectetur aut.', '4345.00', NULL, '2016-05-02 21:20:07', '2016-05-02 21:20:07'),
(5, 26, 'Debitis dolores.', 'Reiciendis earum.', '3588.00', NULL, '2016-05-02 21:20:07', '2016-05-02 21:20:07'),
(6, 9, 'Recusandae error.', 'Maxime delectus.', '2916.00', NULL, '2016-05-02 21:20:08', '2016-05-02 21:20:08'),
(7, 11, 'Laborum expedita.', 'Ea quas facilis ut.', '1628.00', NULL, '2016-05-02 21:20:08', '2016-05-02 21:20:08'),
(8, 14, 'Voluptatem voluptas.', 'Qui eos soluta.', '1824.00', NULL, '2016-05-02 21:20:08', '2016-05-02 21:20:08'),
(9, 5, 'Ea et sunt eligendi.', 'Voluptatem debitis.', '735.00', NULL, '2016-05-02 21:20:08', '2016-05-02 21:20:08'),
(10, 26, 'Aliquam porro.', 'Aliquid vel quia ut.', '3598.00', NULL, '2016-05-02 21:20:08', '2016-05-02 21:20:08'),
(11, 49, 'Est aut eum modi.', 'Iure et ut ut ipsam.', '4327.00', NULL, '2016-05-02 21:20:08', '2016-05-02 21:20:08'),
(12, 20, 'Quas deserunt.', 'Eaque dolore autem.', '3382.00', NULL, '2016-05-02 21:20:08', '2016-05-02 21:20:08'),
(13, 45, 'Qui repellendus ut.', 'Rerum in assumenda.', '2062.00', NULL, '2016-05-02 21:20:08', '2016-05-02 21:20:08'),
(14, 29, 'Similique magni ut.', 'Illum eius velit.', '1832.00', NULL, '2016-05-02 21:20:08', '2016-05-02 21:20:08'),
(15, 40, 'Temporibus corrupti.', 'Impedit dolorum.', '971.00', NULL, '2016-05-02 21:20:08', '2016-05-02 21:20:08'),
(16, 9, 'Totam neque ipsa.', 'Excepturi nostrum.', '2966.00', NULL, '2016-05-02 21:20:08', '2016-05-02 21:20:08'),
(17, 1, 'Dolor vel nulla.', 'Id velit cupiditate.', '3702.00', NULL, '2016-05-02 21:20:08', '2016-05-02 21:20:08'),
(18, 44, 'Qui a repudiandae.', 'Molestias.', '3731.00', NULL, '2016-05-02 21:20:08', '2016-05-02 21:20:08'),
(19, 12, 'Ad iusto molestiae.', 'Vero quisquam ut.', '3268.00', NULL, '2016-05-02 21:20:08', '2016-05-02 21:20:08'),
(20, 12, 'In dolor veritatis.', 'Quia aperiam.', '4901.00', NULL, '2016-05-02 21:20:08', '2016-05-02 21:20:08'),
(21, 44, 'Tenetur minima.', 'Dignissimos culpa.', '2560.00', NULL, '2016-05-02 21:20:08', '2016-05-02 21:20:08'),
(22, 41, 'Error deserunt eos.', 'Quia illum eum.', '4484.00', NULL, '2016-05-02 21:20:08', '2016-05-02 21:20:08'),
(23, 13, 'Voluptas error.', 'Ipsum error soluta.', '1227.00', NULL, '2016-05-02 21:20:08', '2016-05-02 21:20:08'),
(24, 46, 'Consequatur placeat.', 'Cumque ad hic totam.', '4581.00', NULL, '2016-05-02 21:20:08', '2016-05-02 21:20:08'),
(25, 33, 'Voluptas non.', 'Repellendus.', '3062.00', NULL, '2016-05-02 21:20:08', '2016-05-02 21:20:08'),
(26, 47, 'Recusandae et quis.', 'Commodi beatae.', '2047.00', NULL, '2016-05-02 21:20:08', '2016-05-02 21:20:08'),
(27, 29, 'Occaecati quis.', 'Doloremque quasi.', '1154.00', NULL, '2016-05-02 21:20:08', '2016-05-02 21:20:08'),
(28, 24, 'Ullam quaerat.', 'Enim velit dolorem.', '2510.00', NULL, '2016-05-02 21:20:08', '2016-05-02 21:20:08'),
(29, 9, 'Est odio et.', 'Qui minus eligendi.', '3559.00', NULL, '2016-05-02 21:20:08', '2016-05-02 21:20:08'),
(30, 1, 'A deleniti optio.', 'Facere tempora et.', '2201.00', NULL, '2016-05-02 21:20:08', '2016-05-02 21:20:08'),
(31, 41, 'Et provident.', 'Placeat omnis hic.', '4627.00', NULL, '2016-05-02 21:20:08', '2016-05-02 21:20:08'),
(32, 39, 'Et veritatis soluta.', 'Architecto quia.', '2605.00', NULL, '2016-05-02 21:20:08', '2016-05-02 21:20:08'),
(33, 44, 'Et neque facilis.', 'Enim repudiandae.', '1613.00', NULL, '2016-05-02 21:20:08', '2016-05-02 21:20:08'),
(34, 21, 'Itaque cumque.', 'Recusandae in quia.', '4356.00', NULL, '2016-05-02 21:20:08', '2016-05-02 21:20:08'),
(35, 40, 'Laborum esse qui.', 'Architecto aliquid.', '2144.00', NULL, '2016-05-02 21:20:08', '2016-05-02 21:20:08'),
(36, 32, 'Et id dolores quo.', 'Excepturi quis.', '3703.00', NULL, '2016-05-02 21:20:08', '2016-05-02 21:20:08'),
(37, 40, 'Et fugiat officiis.', 'Magnam natus.', '4700.00', NULL, '2016-05-02 21:20:08', '2016-05-02 21:20:08'),
(38, 17, 'Minima doloremque.', 'Aut ratione eos aut.', '4459.00', NULL, '2016-05-02 21:20:08', '2016-05-02 21:20:08'),
(39, 20, 'Voluptatem et sunt.', 'Tempore vel.', '3048.00', NULL, '2016-05-02 21:20:08', '2016-05-02 21:20:08'),
(40, 27, 'Doloremque.', 'Magnam consectetur.', '4083.00', NULL, '2016-05-02 21:20:08', '2016-05-02 21:20:08'),
(41, 31, 'Harum assumenda.', 'Voluptatum.', '2666.00', NULL, '2016-05-02 21:20:08', '2016-05-02 21:20:08'),
(42, 1, 'Eaque assumenda.', 'Repudiandae.', '2144.00', NULL, '2016-05-02 21:20:08', '2016-05-02 21:20:08'),
(43, 8, 'Autem culpa nisi.', 'Aspernatur.', '1044.00', NULL, '2016-05-02 21:20:08', '2016-05-02 21:20:08'),
(44, 50, 'Voluptatem quisquam.', 'Aperiam odio quas.', '4190.00', NULL, '2016-05-02 21:20:08', '2016-05-02 21:20:08'),
(45, 36, 'Ut dolores optio.', 'Ducimus perferendis.', '1177.00', NULL, '2016-05-02 21:20:08', '2016-05-02 21:20:08'),
(46, 5, 'Libero accusamus.', 'Quibusdam omnis.', '1742.00', NULL, '2016-05-02 21:20:08', '2016-05-02 21:20:08'),
(47, 9, 'Natus deleniti.', 'Consequatur totam.', '2162.00', NULL, '2016-05-02 21:20:08', '2016-05-02 21:20:08'),
(48, 50, 'Tempora unde.', 'Est est placeat.', '3502.00', NULL, '2016-05-02 21:20:08', '2016-05-02 21:20:08'),
(49, 10, 'Asperiores.', 'Quam quae aut sed.', '3562.00', NULL, '2016-05-02 21:20:08', '2016-05-02 21:20:08'),
(50, 28, 'Qui natus fuga.', 'Qui libero ducimus.', '1399.00', NULL, '2016-05-02 21:20:08', '2016-05-02 21:20:08');
-- --------------------------------------------------------
--
-- Table structure for table `bank_accounts`
--
CREATE TABLE IF NOT EXISTS `bank_accounts` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL,
`account_name` varchar(60) COLLATE utf8_unicode_ci NOT NULL,
`account_number` varchar(60) COLLATE utf8_unicode_ci NOT NULL,
`bank_name` varchar(60) COLLATE utf8_unicode_ci NOT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=51 ;
--
-- Dumping data for table `bank_accounts`
--
INSERT INTO `bank_accounts` (`id`, `user_id`, `account_name`, `account_number`, `bank_name`, `deleted_at`, `created_at`, `updated_at`) VALUES
(1, 1, 'Esse explicabo aut.', '99747158', 'EastWest', NULL, '2016-05-02 21:20:08', '2016-05-02 21:20:08'),
(2, 2, 'Velit quo eos quasi.', '7143908', 'EastWest', NULL, '2016-05-02 21:20:08', '2016-05-02 21:20:08'),
(3, 3, 'Delectus laboriosam.', '91735518', 'EastWest', NULL, '2016-05-02 21:20:08', '2016-05-02 21:20:08'),
(4, 4, 'Quaerat qui.', '24478676', 'EastWest', NULL, '2016-05-02 21:20:08', '2016-05-02 21:20:08'),
(5, 5, 'Qui dicta excepturi.', '14923729', 'EastWest', NULL, '2016-05-02 21:20:08', '2016-05-02 21:20:08'),
(6, 6, 'Tempore.', '56154363', 'EastWest', NULL, '2016-05-02 21:20:08', '2016-05-02 21:20:08'),
(7, 7, 'Vel sed officiis.', '10783143', 'EastWest', NULL, '2016-05-02 21:20:08', '2016-05-02 21:20:08'),
(8, 8, 'Vel vitae iusto est.', '27798722', 'EastWest', NULL, '2016-05-02 21:20:08', '2016-05-02 21:20:08'),
(9, 9, 'Et facilis impedit.', '61016813', 'EastWest', NULL, '2016-05-02 21:20:08', '2016-05-02 21:20:08'),
(10, 10, 'Voluptatibus.', '74798628', 'EastWest', NULL, '2016-05-02 21:20:08', '2016-05-02 21:20:08'),
(11, 11, 'Facilis ea facere.', '7932015', 'EastWest', NULL, '2016-05-02 21:20:08', '2016-05-02 21:20:08'),
(12, 12, 'Et in provident aut.', '61451571', 'EastWest', NULL, '2016-05-02 21:20:08', '2016-05-02 21:20:08'),
(13, 13, 'Neque veritatis.', '86694754', 'EastWest', NULL, '2016-05-02 21:20:08', '2016-05-02 21:20:08'),
(14, 14, 'Voluptatem aut.', '9321116', 'EastWest', NULL, '2016-05-02 21:20:08', '2016-05-02 21:20:08'),
(15, 15, 'Necessitatibus.', '43221104', 'EastWest', NULL, '2016-05-02 21:20:08', '2016-05-02 21:20:08'),
(16, 16, 'Quia eveniet.', '17932050', 'EastWest', NULL, '2016-05-02 21:20:08', '2016-05-02 21:20:08'),
(17, 17, 'Consequatur optio.', '45815190', 'EastWest', NULL, '2016-05-02 21:20:09', '2016-05-02 21:20:09'),
(18, 18, 'Modi enim.', '90420430', 'EastWest', NULL, '2016-05-02 21:20:09', '2016-05-02 21:20:09'),
(19, 19, 'Suscipit error.', '29382001', 'EastWest', NULL, '2016-05-02 21:20:09', '2016-05-02 21:20:09'),
(20, 20, 'Expedita eos iure.', '26356837', 'EastWest', NULL, '2016-05-02 21:20:09', '2016-05-02 21:20:09'),
(21, 21, 'Deleniti adipisci.', '11384915', 'EastWest', NULL, '2016-05-02 21:20:09', '2016-05-02 21:20:09'),
(22, 22, 'Aperiam repellat.', '48714336', 'EastWest', NULL, '2016-05-02 21:20:09', '2016-05-02 21:20:09'),
(23, 23, 'Nulla modi eaque.', '35175569', 'EastWest', NULL, '2016-05-02 21:20:09', '2016-05-02 21:20:09'),
(24, 24, 'Enim a occaecati.', '87506957', 'EastWest', NULL, '2016-05-02 21:20:09', '2016-05-02 21:20:09'),
(25, 25, 'Dolorum commodi.', '81595273', 'EastWest', NULL, '2016-05-02 21:20:09', '2016-05-02 21:20:09'),
(26, 26, 'Beatae rem hic at.', '42960140', 'EastWest', NULL, '2016-05-02 21:20:09', '2016-05-02 21:20:09'),
(27, 27, 'Incidunt dolores.', '58862011', 'EastWest', NULL, '2016-05-02 21:20:09', '2016-05-02 21:20:09'),
(28, 28, 'Quod reiciendis.', '4738745', 'EastWest', NULL, '2016-05-02 21:20:09', '2016-05-02 21:20:09'),
(29, 29, 'Reprehenderit sed.', '48761758', 'EastWest', NULL, '2016-05-02 21:20:09', '2016-05-02 21:20:09'),
(30, 30, 'Laudantium id.', '93194894', 'EastWest', NULL, '2016-05-02 21:20:09', '2016-05-02 21:20:09'),
(31, 31, 'Saepe laboriosam.', '26962421', 'EastWest', NULL, '2016-05-02 21:20:09', '2016-05-02 21:20:09'),
(32, 32, 'Id quam autem.', '88038478', 'EastWest', NULL, '2016-05-02 21:20:09', '2016-05-02 21:20:09'),
(33, 33, 'In doloribus dicta.', '66347270', 'EastWest', NULL, '2016-05-02 21:20:09', '2016-05-02 21:20:09'),
(34, 34, 'Iusto ut iste nisi.', '49013264', 'EastWest', NULL, '2016-05-02 21:20:09', '2016-05-02 21:20:09'),
(35, 35, 'Harum animi saepe.', '53049280', 'EastWest', NULL, '2016-05-02 21:20:09', '2016-05-02 21:20:09'),
(36, 36, 'Dolorem eos cumque.', '11451719', 'EastWest', NULL, '2016-05-02 21:20:09', '2016-05-02 21:20:09'),
(37, 37, 'Omnis quas.', '89607403', 'EastWest', NULL, '2016-05-02 21:20:09', '2016-05-02 21:20:09'),
(38, 38, 'Laudantium commodi.', '98927088', 'EastWest', NULL, '2016-05-02 21:20:09', '2016-05-02 21:20:09'),
(39, 39, 'Iure officiis.', '91394452', 'EastWest', NULL, '2016-05-02 21:20:09', '2016-05-02 21:20:09'),
(40, 40, 'Ut distinctio.', '64787034', 'EastWest', NULL, '2016-05-02 21:20:09', '2016-05-02 21:20:09'),
(41, 41, 'Consequatur enim.', '74520531', 'EastWest', NULL, '2016-05-02 21:20:09', '2016-05-02 21:20:09'),
(42, 42, 'Eos nulla.', '56152559', 'EastWest', NULL, '2016-05-02 21:20:09', '2016-05-02 21:20:09'),
(43, 43, 'Consectetur magni.', '26175804', 'EastWest', NULL, '2016-05-02 21:20:09', '2016-05-02 21:20:09'),
(44, 44, 'Nobis a architecto.', '60154982', 'EastWest', NULL, '2016-05-02 21:20:09', '2016-05-02 21:20:09'),
(45, 45, 'Ipsa in.', '18801171', 'EastWest', NULL, '2016-05-02 21:20:09', '2016-05-02 21:20:09'),
(46, 46, 'Soluta est dolores.', '26396545', 'EastWest', NULL, '2016-05-02 21:20:09', '2016-05-02 21:20:09'),
(47, 47, 'Sed quos quas.', '42510921', 'EastWest', NULL, '2016-05-02 21:20:09', '2016-05-02 21:20:09'),
(48, 48, 'Minima quia atque.', '79479100', 'EastWest', NULL, '2016-05-02 21:20:09', '2016-05-02 21:20:09'),
(49, 49, 'Est commodi.', '9302667', 'EastWest', NULL, '2016-05-02 21:20:09', '2016-05-02 21:20:09'),
(50, 50, 'Sed earum.', '24051192', 'EastWest', NULL, '2016-05-02 21:20:09', '2016-05-02 21:20:09');
-- --------------------------------------------------------
--
-- Table structure for table `candidates`
--
CREATE TABLE IF NOT EXISTS `candidates` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`first_name` varchar(60) COLLATE utf8_unicode_ci NOT NULL,
`last_name` varchar(60) COLLATE utf8_unicode_ci NOT NULL,
`email` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`contact_no` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`job_vacancy_id` int(11) NOT NULL,
`resume` text COLLATE utf8_unicode_ci NOT NULL,
`comment` text COLLATE utf8_unicode_ci NOT NULL,
`application_date` date NOT NULL,
`status` varchar(60) COLLATE utf8_unicode_ci NOT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `candidates_email_unique` (`email`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `cut_offs`
--
CREATE TABLE IF NOT EXISTS `cut_offs` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`date_start` date NOT NULL,
`date_end` date NOT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=3 ;
--
-- Dumping data for table `cut_offs`
--
INSERT INTO `cut_offs` (`id`, `date_start`, `date_end`, `deleted_at`, `created_at`, `updated_at`) VALUES
(1, '2016-05-01', '2016-05-30', NULL, '2016-05-02 21:21:54', '2016-05-02 21:22:02'),
(2, '2016-04-01', '2016-04-30', NULL, '2016-05-02 21:58:49', '2016-05-02 21:58:49');
-- --------------------------------------------------------
--
-- Table structure for table `departments`
--
CREATE TABLE IF NOT EXISTS `departments` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`department` varchar(60) COLLATE utf8_unicode_ci NOT NULL,
`department_id` int(11) DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=6 ;
--
-- Dumping data for table `departments`
--
INSERT INTO `departments` (`id`, `department`, `department_id`, `deleted_at`, `created_at`, `updated_at`) VALUES
(1, 'Web Development', 0, NULL, '2016-05-02 21:20:06', '2016-05-02 21:20:06'),
(2, 'Marketing', 0, NULL, '2016-05-02 21:20:06', '2016-05-02 21:20:06'),
(3, 'Sales', 0, NULL, '2016-05-02 21:20:06', '2016-05-02 21:20:06'),
(4, 'Admin', 0, NULL, '2016-05-02 21:20:06', '2016-05-02 21:20:06'),
(5, 'Content', 0, NULL, '2016-05-02 21:20:06', '2016-05-02 21:20:06');
-- --------------------------------------------------------
--
-- Table structure for table `designations`
--
CREATE TABLE IF NOT EXISTS `designations` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL,
`designation_item_id` int(11) NOT NULL,
`date_start` date NOT NULL,
`date_end` date DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=101 ;
--
-- Dumping data for table `designations`
--
INSERT INTO `designations` (`id`, `user_id`, `designation_item_id`, `date_start`, `date_end`, `deleted_at`, `created_at`, `updated_at`) VALUES
(1, 1, 11, '2015-09-15', NULL, NULL, '2016-05-02 21:20:09', '2016-05-02 21:20:09'),
(2, 2, 2, '2015-06-07', NULL, NULL, '2016-05-02 21:20:09', '2016-05-02 21:20:09'),
(3, 3, 10, '2015-10-03', NULL, NULL, '2016-05-02 21:20:09', '2016-05-02 21:20:09'),
(4, 4, 8, '2015-09-18', NULL, NULL, '2016-05-02 21:20:09', '2016-05-02 21:20:09'),
(5, 5, 9, '2015-10-18', NULL, NULL, '2016-05-02 21:20:09', '2016-05-02 21:20:09'),
(6, 6, 11, '2015-05-28', NULL, NULL, '2016-05-02 21:20:09', '2016-05-02 21:20:09'),
(7, 7, 2, '2015-08-12', NULL, NULL, '2016-05-02 21:20:09', '2016-05-02 21:20:09'),
(8, 8, 3, '2015-08-06', NULL, NULL, '2016-05-02 21:20:09', '2016-05-02 21:20:09'),
(9, 9, 3, '2015-11-02', NULL, NULL, '2016-05-02 21:20:09', '2016-05-02 21:20:09'),
(10, 10, 7, '2015-11-02', NULL, NULL, '2016-05-02 21:20:09', '2016-05-02 21:20:09'),
(11, 11, 5, '2015-06-21', NULL, NULL, '2016-05-02 21:20:09', '2016-05-02 21:20:09'),
(12, 12, 3, '2015-08-14', NULL, NULL, '2016-05-02 21:20:09', '2016-05-02 21:20:09'),
(13, 13, 9, '2015-05-09', NULL, NULL, '2016-05-02 21:20:09', '2016-05-02 21:20:09'),
(14, 14, 2, '2015-11-05', NULL, NULL, '2016-05-02 21:20:09', '2016-05-02 21:20:09'),
(15, 15, 10, '2015-09-06', NULL, NULL, '2016-05-02 21:20:09', '2016-05-02 21:20:09'),
(16, 16, 5, '2015-09-19', NULL, NULL, '2016-05-02 21:20:09', '2016-05-02 21:20:09'),
(17, 17, 2, '2015-07-09', NULL, NULL, '2016-05-02 21:20:09', '2016-05-02 21:20:09'),
(18, 18, 5, '2015-07-12', NULL, NULL, '2016-05-02 21:20:09', '2016-05-02 21:20:09'),
(19, 19, 1, '2015-08-09', NULL, NULL, '2016-05-02 21:20:09', '2016-05-02 21:20:09'),
(20, 20, 3, '2015-07-03', NULL, NULL, '2016-05-02 21:20:09', '2016-05-02 21:20:09'),
(21, 21, 10, '2015-11-12', NULL, NULL, '2016-05-02 21:20:09', '2016-05-02 21:20:09'),
(22, 22, 4, '2015-04-27', NULL, NULL, '2016-05-02 21:20:09', '2016-05-02 21:20:09'),
(23, 23, 2, '2015-08-04', NULL, NULL, '2016-05-02 21:20:09', '2016-05-02 21:20:09'),
(24, 24, 8, '2015-07-30', NULL, NULL, '2016-05-02 21:20:09', '2016-05-02 21:20:09'),
(25, 25, 10, '2015-07-31', NULL, NULL, '2016-05-02 21:20:09', '2016-05-02 21:20:09'),
(26, 26, 1, '2015-04-29', NULL, NULL, '2016-05-02 21:20:09', '2016-05-02 21:20:09'),
(27, 27, 10, '2015-08-29', NULL, NULL, '2016-05-02 21:20:09', '2016-05-02 21:20:09'),
(28, 28, 11, '2015-07-17', NULL, NULL, '2016-05-02 21:20:10', '2016-05-02 21:20:10'),
(29, 29, 2, '2015-07-07', NULL, NULL, '2016-05-02 21:20:10', '2016-05-02 21:20:10'),
(30, 30, 1, '2015-04-26', NULL, NULL, '2016-05-02 21:20:10', '2016-05-02 21:20:10'),
(31, 31, 5, '2015-07-03', NULL, NULL, '2016-05-02 21:20:10', '2016-05-02 21:20:10'),
(32, 32, 8, '2015-05-03', NULL, NULL, '2016-05-02 21:20:10', '2016-05-02 21:20:10'),
(33, 33, 11, '2015-07-09', NULL, NULL, '2016-05-02 21:20:10', '2016-05-02 21:20:10'),
(34, 34, 5, '2015-05-26', NULL, NULL, '2016-05-02 21:20:10', '2016-05-02 21:20:10'),
(35, 35, 5, '2015-10-20', NULL, NULL, '2016-05-02 21:20:10', '2016-05-02 21:20:10'),
(36, 36, 8, '2015-11-22', NULL, NULL, '2016-05-02 21:20:10', '2016-05-02 21:20:10'),
(37, 37, 2, '2015-10-14', NULL, NULL, '2016-05-02 21:20:10', '2016-05-02 21:20:10'),
(38, 38, 3, '2015-05-04', NULL, NULL, '2016-05-02 21:20:10', '2016-05-02 21:20:10'),
(39, 39, 1, '2015-08-03', NULL, NULL, '2016-05-02 21:20:10', '2016-05-02 21:20:10'),
(40, 40, 8, '2015-10-29', NULL, NULL, '2016-05-02 21:20:10', '2016-05-02 21:20:10'),
(41, 41, 7, '2015-07-05', NULL, NULL, '2016-05-02 21:20:10', '2016-05-02 21:20:10'),
(42, 42, 4, '2015-11-28', NULL, NULL, '2016-05-02 21:20:10', '2016-05-02 21:20:10'),
(43, 43, 1, '2015-07-16', NULL, NULL, '2016-05-02 21:20:10', '2016-05-02 21:20:10'),
(44, 44, 8, '2015-05-28', NULL, NULL, '2016-05-02 21:20:10', '2016-05-02 21:20:10'),
(45, 45, 2, '2015-07-12', NULL, NULL, '2016-05-02 21:20:10', '2016-05-02 21:20:10'),
(46, 46, 11, '2015-07-21', NULL, NULL, '2016-05-02 21:20:10', '2016-05-02 21:20:10'),
(47, 47, 1, '2015-05-07', NULL, NULL, '2016-05-02 21:20:10', '2016-05-02 21:20:10'),
(48, 48, 11, '2015-11-20', NULL, NULL, '2016-05-02 21:20:10', '2016-05-02 21:20:10'),
(49, 49, 4, '2015-09-15', NULL, NULL, '2016-05-02 21:20:10', '2016-05-02 21:20:10'),
(50, 50, 3, '2015-09-13', NULL, NULL, '2016-05-02 21:20:10', '2016-05-02 21:20:10'),
(51, 27, 9, '2014-09-19', '2015-01-09', NULL, '2016-05-02 21:20:10', '2016-05-02 21:20:10'),
(52, 44, 2, '2014-07-19', '2014-11-22', NULL, '2016-05-02 21:20:10', '2016-05-02 21:20:10'),
(53, 19, 2, '2014-09-05', '2014-12-07', NULL, '2016-05-02 21:20:10', '2016-05-02 21:20:10'),
(54, 34, 9, '2014-08-30', '2014-12-13', NULL, '2016-05-02 21:20:10', '2016-05-02 21:20:10'),
(55, 8, 2, '2014-12-04', '2015-02-07', NULL, '2016-05-02 21:20:10', '2016-05-02 21:20:10'),
(56, 10, 8, '2014-07-22', '2014-09-20', NULL, '2016-05-02 21:20:10', '2016-05-02 21:20:10'),
(57, 46, 4, '2014-10-30', '2015-03-18', NULL, '2016-05-02 21:20:10', '2016-05-02 21:20:10'),
(58, 46, 9, '2014-07-10', '2014-09-26', NULL, '2016-05-02 21:20:10', '2016-05-02 21:20:10'),
(59, 37, 2, '2015-01-29', '2015-04-10', NULL, '2016-05-02 21:20:10', '2016-05-02 21:20:10'),
(60, 48, 8, '2014-12-11', '2015-03-13', NULL, '2016-05-02 21:20:10', '2016-05-02 21:20:10'),
(61, 5, 4, '2014-10-10', '2014-12-22', NULL, '2016-05-02 21:20:10', '2016-05-02 21:20:10'),
(62, 2, 7, '2015-01-11', '2015-04-06', NULL, '2016-05-02 21:20:10', '2016-05-02 21:20:10'),
(63, 8, 10, '2014-09-25', '2015-01-08', NULL, '2016-05-02 21:20:10', '2016-05-02 21:20:10'),
(64, 23, 8, '2014-11-12', '2015-02-14', NULL, '2016-05-02 21:20:10', '2016-05-02 21:20:10'),
(65, 47, 8, '2014-11-20', '2015-02-02', NULL, '2016-05-02 21:20:10', '2016-05-02 21:20:10'),
(66, 37, 2, '2014-05-09', '2014-08-18', NULL, '2016-05-02 21:20:10', '2016-05-02 21:20:10'),
(67, 49, 7, '2014-10-25', '2015-03-15', NULL, '2016-05-02 21:20:10', '2016-05-02 21:20:10'),
(68, 46, 2, '2014-04-11', '2014-08-31', NULL, '2016-05-02 21:20:10', '2016-05-02 21:20:10'),
(69, 38, 5, '2014-09-22', '2015-01-14', NULL, '2016-05-02 21:20:10', '2016-05-02 21:20:10'),
(70, 46, 1, '2014-10-21', '2015-01-29', NULL, '2016-05-02 21:20:10', '2016-05-02 21:20:10'),
(71, 34, 10, '2015-02-27', '2015-04-21', NULL, '2016-05-02 21:20:10', '2016-05-02 21:20:10'),
(72, 8, 4, '2014-05-20', '2014-09-08', NULL, '2016-05-02 21:20:10', '2016-05-02 21:20:10'),
(73, 45, 5, '2014-10-19', '2014-12-27', NULL, '2016-05-02 21:20:10', '2016-05-02 21:20:10'),
(74, 45, 1, '2014-07-23', '2014-09-19', NULL, '2016-05-02 21:20:10', '2016-05-02 21:20:10'),
(75, 27, 11, '2014-06-25', '2014-10-22', NULL, '2016-05-02 21:20:10', '2016-05-02 21:20:10'),
(76, 17, 3, '2014-06-19', '2014-09-03', NULL, '2016-05-02 21:20:10', '2016-05-02 21:20:10'),
(77, 44, 1, '2014-10-22', '2015-02-13', NULL, '2016-05-02 21:20:10', '2016-05-02 21:20:10'),
(78, 25, 6, '2014-09-05', '2015-02-02', NULL, '2016-05-02 21:20:10', '2016-05-02 21:20:10'),
(79, 40, 11, '2014-12-15', '2015-04-06', NULL, '2016-05-02 21:20:10', '2016-05-02 21:20:10'),
(80, 31, 1, '2014-06-25', '2014-10-16', NULL, '2016-05-02 21:20:10', '2016-05-02 21:20:10'),
(81, 31, 2, '2014-07-28', '2014-11-29', NULL, '2016-05-02 21:20:10', '2016-05-02 21:20:10'),
(82, 43, 2, '2014-08-02', '2014-12-30', NULL, '2016-05-02 21:20:10', '2016-05-02 21:20:10'),
(83, 32, 3, '2014-06-26', '2014-10-11', NULL, '2016-05-02 21:20:10', '2016-05-02 21:20:10'),
(84, 1, 9, '2014-12-15', '2015-03-20', NULL, '2016-05-02 21:20:10', '2016-05-02 21:20:10'),
(85, 32, 5, '2015-01-09', '2015-03-23', NULL, '2016-05-02 21:20:10', '2016-05-02 21:20:10'),
(86, 7, 10, '2014-12-05', '2015-04-18', NULL, '2016-05-02 21:20:10', '2016-05-02 21:20:10'),
(87, 18, 9, '2014-09-06', '2014-11-25', NULL, '2016-05-02 21:20:10', '2016-05-02 21:20:10'),
(88, 30, 6, '2014-06-21', '2014-09-28', NULL, '2016-05-02 21:20:10', '2016-05-02 21:20:10'),
(89, 22, 3, '2014-06-24', '2014-11-09', NULL, '2016-05-02 21:20:10', '2016-05-02 21:20:10'),
(90, 11, 3, '2014-07-29', '2014-10-13', NULL, '2016-05-02 21:20:10', '2016-05-02 21:20:10'),
(91, 10, 5, '2014-10-29', '2015-02-11', NULL, '2016-05-02 21:20:10', '2016-05-02 21:20:10'),
(92, 37, 11, '2014-08-25', '2014-12-02', NULL, '2016-05-02 21:20:10', '2016-05-02 21:20:10'),
(93, 49, 8, '2014-06-01', '2014-08-31', NULL, '2016-05-02 21:20:10', '2016-05-02 21:20:10'),
(94, 27, 9, '2014-11-12', '2015-01-02', NULL, '2016-05-02 21:20:10', '2016-05-02 21:20:10'),
(95, 17, 7, '2014-09-30', '2014-11-26', NULL, '2016-05-02 21:20:10', '2016-05-02 21:20:10'),
(96, 6, 3, '2015-01-16', '2015-03-26', NULL, '2016-05-02 21:20:10', '2016-05-02 21:20:10'),
(97, 9, 3, '2014-07-08', '2014-10-27', NULL, '2016-05-02 21:20:10', '2016-05-02 21:20:10'),
(98, 48, 4, '2014-05-22', '2014-10-05', NULL, '2016-05-02 21:20:10', '2016-05-02 21:20:10'),
(99, 26, 8, '2014-10-27', '2015-02-16', NULL, '2016-05-02 21:20:10', '2016-05-02 21:20:10'),
(100, 44, 2, '2014-12-04', '2015-02-28', NULL, '2016-05-02 21:20:10', '2016-05-02 21:20:10');
-- --------------------------------------------------------
--
-- Table structure for table `designation_items`
--
CREATE TABLE IF NOT EXISTS `designation_items` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`designation_item` varchar(60) COLLATE utf8_unicode_ci NOT NULL,
`department_id` int(11) NOT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=12 ;
--
-- Dumping data for table `designation_items`
--
INSERT INTO `designation_items` (`id`, `designation_item`, `department_id`, `deleted_at`, `created_at`, `updated_at`) VALUES
(1, 'Junior Web Developer', 1, NULL, '2016-05-02 21:20:07', '2016-05-02 21:20:07'),
(2, 'Senior Web Developer', 1, NULL, '2016-05-02 21:20:07', '2016-05-02 21:20:07'),
(3, 'Web Development Manager', 1, NULL, '2016-05-02 21:20:07', '2016-05-02 21:20:07'),
(4, 'Marketing Manager', 2, NULL, '2016-05-02 21:20:07', '2016-05-02 21:20:07'),
(5, 'Marketing Associate', 2, NULL, '2016-05-02 21:20:07', '2016-05-02 21:20:07'),
(6, 'Sales Manager', 3, NULL, '2016-05-02 21:20:07', '2016-05-02 21:20:07'),
(7, 'Sales Associate', 3, NULL, '2016-05-02 21:20:07', '2016-05-02 21:20:07'),
(8, 'Admin Associate', 4, NULL, '2016-05-02 21:20:07', '2016-05-02 21:20:07'),
(9, 'Content Manager', 5, NULL, '2016-05-02 21:20:07', '2016-05-02 21:20:07'),
(10, 'Content Junior Writer', 5, NULL, '2016-05-02 21:20:07', '2016-05-02 21:20:07'),
(11, 'Content Senior Writer', 5, NULL, '2016-05-02 21:20:07', '2016-05-02 21:20:07');
-- --------------------------------------------------------
--
-- Table structure for table `documents`
--
CREATE TABLE IF NOT EXISTS `documents` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL,
`document_type_id` int(11) NOT NULL,
`document` text COLLATE utf8_unicode_ci NOT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `document_types`
--
CREATE TABLE IF NOT EXISTS `document_types` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`document_type` varchar(60) COLLATE utf8_unicode_ci NOT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=4 ;
--
-- Dumping data for table `document_types`
--
INSERT INTO `document_types` (`id`, `document_type`, `deleted_at`, `created_at`, `updated_at`) VALUES
(1, 'Resume', NULL, '2016-05-02 21:20:07', '2016-05-02 21:20:07'),
(2, 'Application Letter', NULL, '2016-05-02 21:20:07', '2016-05-02 21:20:07'),
(3, 'Admission', NULL, '2016-05-02 21:20:07', '2016-05-02 21:20:07');
-- --------------------------------------------------------
--
-- Table structure for table `events`
--
CREATE TABLE IF NOT EXISTS `events` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`event_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`description` text COLLATE utf8_unicode_ci NOT NULL,
`date_start` date NOT NULL,
`date_end` date NOT NULL,
`image` text COLLATE utf8_unicode_ci NOT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=51 ;
--
-- Dumping data for table `events`
--
INSERT INTO `events` (`id`, `event_name`, `description`, `date_start`, `date_end`, `image`, `deleted_at`, `created_at`, `updated_at`) VALUES
(1, 'Sunt qui velit odio.', 'Nemo nihil maiores nemo et enim voluptas totam voluptatem. Dolorem dolor voluptatem placeat recusandae.\nPerspiciatis dolor enim eaque ut. Cupiditate et cum ducimus. In ut ipsum rerum voluptas.', '2016-01-01', '2016-01-02', '', NULL, '2016-05-02 21:20:11', '2016-05-02 21:20:11'),
(2, 'Eaque et eos vero.', 'Ea similique dolore commodi nam quo omnis quia. Quaerat repellat dicta officiis. Placeat praesentium eum rerum reiciendis.', '2016-02-06', '2016-02-09', '', NULL, '2016-05-02 21:20:11', '2016-05-02 21:20:11'),
(3, 'Doloremque.', 'Impedit reprehenderit qui commodi quia provident optio. Assumenda similique saepe voluptas maiores. Tempora veritatis illum vero qui voluptatem corporis sed repellendus.', '2016-06-16', '2016-06-21', '', NULL, '2016-05-02 21:20:11', '2016-05-02 21:20:11'),
(4, 'Explicabo sed.', 'Dolor maiores assumenda consectetur saepe laborum inventore. Ex totam et libero culpa placeat. Vitae culpa modi omnis praesentium ullam possimus vel et. Dolor in quam quam doloremque facilis.', '2016-01-27', '2016-01-31', '', NULL, '2016-05-02 21:20:11', '2016-05-02 21:20:11'),
(5, 'Et aut expedita.', 'Qui ut quasi ullam sapiente. Consequatur at odit nulla eum pariatur sed. Totam rerum iste in illo sit id aut. Sapiente molestiae praesentium in omnis.', '2015-12-31', '2016-01-05', '', NULL, '2016-05-02 21:20:11', '2016-05-02 21:20:11'),
(6, 'Optio aspernatur.', 'Ipsam et blanditiis ullam repudiandae. Id perferendis et et. Voluptates et sed eos rerum sint neque. Non perferendis rerum enim itaque.', '2016-02-14', '2016-02-18', '', NULL, '2016-05-02 21:20:11', '2016-05-02 21:20:11'),
(7, 'Officia aut minima.', 'Velit exercitationem vero ut quisquam adipisci aliquam. Temporibus a consequuntur beatae. Nobis possimus laborum illum velit a.', '2016-01-04', '2016-01-08', '', NULL, '2016-05-02 21:20:11', '2016-05-02 21:20:11'),
(8, 'Dignissimos.', 'Ipsa ducimus consectetur consequatur quo sit. Totam eius sunt illo ullam est. Non consectetur harum enim. Ea id modi est minus veritatis aut incidunt earum.', '2016-06-10', '2016-06-10', '', NULL, '2016-05-02 21:20:11', '2016-05-02 21:20:11'),
(9, 'Possimus.', 'Tempore possimus itaque hic maxime fugit ipsum quam aut. Est vel aperiam totam omnis quidem pariatur aut nam. Dolor delectus et assumenda alias facilis.', '2016-03-03', '2016-03-06', '', NULL, '2016-05-02 21:20:11', '2016-05-02 21:20:11'),
(10, 'Est qui facere.', 'Deserunt excepturi eaque et delectus nemo. Modi et explicabo modi aut dolorem ea tempora. Eligendi omnis ipsa labore eveniet earum voluptatem neque.', '2016-03-12', '2016-03-14', '', NULL, '2016-05-02 21:20:11', '2016-05-02 21:20:11'),
(11, 'Rerum dolore sunt.', 'Id sint quis est fuga nisi. Et ut ex qui deleniti itaque amet. Nam aliquid et tempora architecto repellendus animi. Iste sunt et sed qui soluta dicta minus.', '2015-10-27', '2015-11-01', '', NULL, '2016-05-02 21:20:11', '2016-05-02 21:20:11'),
(12, 'Ut similique a.', 'Molestiae velit voluptatum maiores consequatur eveniet. Ea recusandae rem excepturi deserunt. In libero et incidunt doloribus nisi. Aut porro eos quidem.', '2016-04-05', '2016-04-05', '', NULL, '2016-05-02 21:20:11', '2016-05-02 21:20:11'),
(13, 'Ut dolor qui et at.', 'Impedit ut sit suscipit et magnam animi. Autem dolores repellat sunt. Non reprehenderit laboriosam rerum est soluta qui quis.', '2016-01-03', '2016-01-08', '', NULL, '2016-05-02 21:20:11', '2016-05-02 21:20:11'),
(14, 'Quae distinctio.', 'Cum ducimus corporis ad illum nemo facilis. Odit beatae et unde laboriosam alias fuga. Inventore nostrum vel consequatur eligendi minima. Aut aut eius nostrum aliquam delectus porro.', '2016-06-26', '2016-06-26', '', NULL, '2016-05-02 21:20:11', '2016-05-02 21:20:11'),
(15, 'Dicta adipisci qui.', 'Praesentium nostrum aut et eius fugit minus. Dolorem neque assumenda omnis libero placeat soluta perspiciatis quos. Voluptatem est culpa quia sint sed.', '2016-01-25', '2016-01-25', '', NULL, '2016-05-02 21:20:11', '2016-05-02 21:20:11'),
(16, 'Qui voluptatem.', 'Corporis aut aperiam commodi velit. Nesciunt maiores facilis itaque facere. Aliquam possimus tempora quidem et hic mollitia veritatis animi.', '2016-05-19', '2016-05-22', '', NULL, '2016-05-02 21:20:11', '2016-05-02 21:20:11'),
(17, 'Explicabo qui.', 'Vel corporis est in sapiente in voluptates optio. Qui quibusdam numquam sed quia. Nam id consequatur hic natus et modi. Ex ea delectus ea quasi facere.', '2016-05-12', '2016-05-15', '', NULL, '2016-05-02 21:20:11', '2016-05-02 21:20:11'),
(18, 'Laudantium sequi.', 'Minima totam accusamus eum repellendus aliquid. Neque qui pariatur ducimus quibusdam et temporibus deserunt dolores. Vel aut fuga sit eius nulla. Alias fugit repudiandae quo.', '2016-06-25', '2016-06-28', '', NULL, '2016-05-02 21:20:11', '2016-05-02 21:20:11'),
(19, 'Quo quia deleniti.', 'Sed aperiam consequatur debitis non laborum excepturi rerum. Vitae qui necessitatibus asperiores quidem. Aperiam in velit dolor quis qui rerum illo rerum.', '2016-03-25', '2016-03-30', '', NULL, '2016-05-02 21:20:11', '2016-05-02 21:20:11'),
(20, 'Dolor maxime.', 'Omnis est explicabo quae corrupti nostrum esse enim. Velit accusamus velit illum voluptas non qui consequatur. Vero quia et voluptatem et ex maxime vel. Non nihil aut quia autem rerum.', '2016-04-18', '2016-04-20', '', NULL, '2016-05-02 21:20:11', '2016-05-02 21:20:11'),
(21, 'Perspiciatis.', 'Optio minima incidunt laborum laborum et et in. Recusandae et qui ea perspiciatis illo. Quia repudiandae est temporibus rerum voluptatem eligendi.', '2016-01-14', '2016-01-16', '', NULL, '2016-05-02 21:20:11', '2016-05-02 21:20:11'),
(22, 'Id quo nemo.', 'Dolor libero culpa magnam ex consequatur voluptas aut vel. Et quia consequatur pariatur iste soluta et saepe voluptas. Ducimus atque qui minus iusto illo fugit a. Animi ab unde provident at.', '2016-05-11', '2016-05-15', '', NULL, '2016-05-02 21:20:11', '2016-05-02 21:20:11'),
(23, 'Perferendis.', 'Nostrum aut ut minima nisi nisi voluptatem voluptas. Ab quos sit doloribus dolorum numquam delectus aut. Laudantium sequi qui deleniti odio modi rerum.', '2016-06-26', '2016-06-28', '', NULL, '2016-05-02 21:20:11', '2016-05-02 21:20:11'),
(24, 'Ut aut nam impedit.', 'Provident quia sit maxime libero minus impedit veniam illo. Dolores quae ad assumenda ea rerum repellat voluptates. Eaque ratione rerum qui tempora. Id recusandae dignissimos eveniet aut eveniet.', '2016-03-04', '2016-03-04', '', NULL, '2016-05-02 21:20:11', '2016-05-02 21:20:11'),
(25, 'Necessitatibus sed.', 'Quis ut tempora soluta voluptas voluptates. Ullam veritatis aut illum cupiditate sint qui facere temporibus. A doloribus aut ut quod commodi corporis.', '2015-11-21', '2015-11-21', '', NULL, '2016-05-02 21:20:11', '2016-05-02 21:20:11'),
(26, 'Omnis placeat rerum.', 'Ut qui est voluptatem nemo nisi molestiae. Architecto quia dignissimos labore qui ad inventore. Numquam ea recusandae laudantium modi pariatur. Corporis deserunt vitae sit id.', '2016-04-12', '2016-04-13', '', NULL, '2016-05-02 21:20:11', '2016-05-02 21:20:11'),
(27, 'Explicabo omnis.', 'Distinctio laudantium debitis et accusantium sint. Et et voluptatem necessitatibus tempora. Eum odio aut quam alias ea nemo quae. Ut sed provident quisquam necessitatibus labore.', '2016-04-26', '2016-04-26', '', NULL, '2016-05-02 21:20:11', '2016-05-02 21:20:11'),
(28, 'Provident tempora.', 'Officiis amet eius quos alias soluta officia molestias et. Ratione nobis quis ab facere corporis vel expedita. Ab facere est placeat atque nesciunt.', '2016-03-08', '2016-03-10', '', NULL, '2016-05-02 21:20:11', '2016-05-02 21:20:11'),
(29, 'Rem numquam aut.', 'Fugit vero reprehenderit sed neque inventore quis. Aut autem eos voluptatem natus non. Voluptate quae voluptatibus quia inventore. In quia numquam sint et.', '2016-02-02', '2016-02-04', '', NULL, '2016-05-02 21:20:11', '2016-05-02 21:20:11'),
(30, 'Itaque facere.', 'Excepturi tempore nobis dolorum ipsum. Laudantium natus et cupiditate omnis minus. Eos harum fugiat dolorem.', '2016-06-03', '2016-06-07', '', NULL, '2016-05-02 21:20:11', '2016-05-02 21:20:11'),
(31, 'Et quos consequatur.', 'Delectus dolorem numquam odit repudiandae. Voluptas sed inventore accusantium. Perspiciatis inventore maxime adipisci et aut non facilis.', '2015-11-25', '2015-11-29', '', NULL, '2016-05-02 21:20:11', '2016-05-02 21:20:11'),
(32, 'Omnis enim et odio.', 'Ea ab laudantium est omnis non id. Et esse id hic. Voluptas adipisci odit iusto ratione et dicta rerum.', '2015-10-26', '2015-10-27', '', NULL, '2016-05-02 21:20:11', '2016-05-02 21:20:11'),
(33, 'Totam aliquam ea.', 'Neque numquam dolorum aut. Aspernatur mollitia exercitationem consequatur nemo. Voluptas necessitatibus ab quas reiciendis illum voluptates.', '2016-02-14', '2016-02-15', '', NULL, '2016-05-02 21:20:11', '2016-05-02 21:20:11'),
(34, 'Eos ut error velit.', 'Id voluptatum nobis perspiciatis voluptatem quibusdam. Odio provident impedit amet. Id et assumenda soluta blanditiis voluptas. Quia reiciendis ut quo.', '2016-04-09', '2016-04-09', '', NULL, '2016-05-02 21:20:11', '2016-05-02 21:20:11'),
(35, 'Deserunt et.', 'Enim nihil sit autem distinctio neque assumenda. Unde officiis consequatur accusamus eius est. Et sunt non accusantium.', '2016-02-01', '2016-02-02', '', NULL, '2016-05-02 21:20:11', '2016-05-02 21:20:11'),
(36, 'Aliquam cupiditate.', 'Impedit unde odio ut et dignissimos et debitis. Et aut tenetur nesciunt vel est. Aliquid eaque impedit ut minus fugit.', '2015-12-04', '2015-12-06', '', NULL, '2016-05-02 21:20:11', '2016-05-02 21:20:11'),
(37, 'Quo dolorem.', 'Adipisci saepe fugiat aperiam. Assumenda voluptatibus quis accusamus dolor doloribus aspernatur ex. Dolorem ex sunt distinctio commodi voluptatem fugiat. Aut soluta cumque fuga consequuntur.', '2016-02-28', '2016-02-29', '', NULL, '2016-05-02 21:20:11', '2016-05-02 21:20:11'),
(38, 'Voluptatem ut.', 'Vel aut odio rerum aliquam. Et adipisci quasi voluptas est. Magnam labore deleniti laudantium vitae est ex quibusdam.', '2015-12-30', '2015-12-30', '', NULL, '2016-05-02 21:20:11', '2016-05-02 21:20:11'),
(39, 'Aperiam aperiam.', 'Quia cumque possimus quo ex nobis impedit. Sit quia totam laudantium sed. Deserunt est necessitatibus temporibus accusamus omnis fuga. Officia nostrum molestiae voluptatem porro natus.', '2016-05-12', '2016-05-14', '', NULL, '2016-05-02 21:20:11', '2016-05-02 21:20:11'),
(40, 'Labore consequatur.', 'Pariatur rem soluta ea omnis corporis consequatur. Ullam perferendis asperiores quae dicta. Nostrum tempore omnis et eius ea earum impedit consequatur. Nihil eligendi consequatur et.', '2015-12-29', '2015-12-31', '', NULL, '2016-05-02 21:20:11', '2016-05-02 21:20:11'),
(41, 'Et voluptatem nulla.', 'Ea dicta non autem qui. Consequuntur praesentium reprehenderit consequatur. Sunt qui fugiat omnis dolorem exercitationem. Dolores dicta hic fuga quo veritatis reprehenderit ut.', '2016-05-17', '2016-05-22', '', NULL, '2016-05-02 21:20:11', '2016-05-02 21:20:11'),
(42, 'Animi error sed.', 'Qui qui aliquam numquam fugit vel temporibus et. Nulla rem iure omnis est. Aperiam est quae libero impedit.', '2016-06-14', '2016-06-15', '', NULL, '2016-05-02 21:20:11', '2016-05-02 21:20:11'),
(43, 'Ut quaerat amet.', 'Asperiores in quasi magnam harum asperiores. Et possimus ut molestias consequatur ad ab nesciunt. Laudantium voluptates porro quo aut. Illo et omnis at.', '2016-03-20', '2016-03-23', '', NULL, '2016-05-02 21:20:11', '2016-05-02 21:20:11'),
(44, 'Blanditiis aut.', 'Eaque autem ut quasi a. Voluptas cumque quaerat vitae velit totam ut. Dolorem voluptate officiis eaque.', '2016-03-13', '2016-03-13', '', NULL, '2016-05-02 21:20:11', '2016-05-02 21:20:11'),
(45, 'Et explicabo itaque.', 'Ab dolores voluptatem maiores enim autem. Vel modi laborum nihil itaque qui. Maiores beatae occaecati labore quisquam. Et dignissimos enim eveniet doloribus perspiciatis.', '2016-04-02', '2016-04-04', '', NULL, '2016-05-02 21:20:11', '2016-05-02 21:20:11'),
(46, 'Provident odit.', 'Nam aut aut rerum facilis. Doloremque sed molestiae nisi illo placeat et. Non alias et impedit aut ut ipsa nam sit.', '2016-06-11', '2016-06-15', '', NULL, '2016-05-02 21:20:11', '2016-05-02 21:20:11'),
(47, 'Amet ullam labore.', 'Praesentium iure dolores ullam omnis aliquam quam. Qui est corrupti aut voluptas. Doloribus laudantium ea earum minima. Occaecati asperiores ratione quibusdam a.', '2015-10-27', '2015-11-01', '', NULL, '2016-05-02 21:20:11', '2016-05-02 21:20:11'),
(48, 'Dolorem rerum.', 'Quia quis occaecati repellat ut ipsum aut nesciunt. Quo ut laudantium inventore harum. Magni illo optio autem numquam voluptas dolorem excepturi. Eveniet est dolorem sit numquam.', '2016-01-08', '2016-01-10', '', NULL, '2016-05-02 21:20:11', '2016-05-02 21:20:11'),
(49, 'Ut quo qui.', 'Autem necessitatibus molestiae laboriosam quasi. Dolores optio aut a perferendis suscipit sit. Quis nam esse enim beatae facilis praesentium culpa.', '2015-12-19', '2015-12-21', '', NULL, '2016-05-02 21:20:11', '2016-05-02 21:20:11'),
(50, 'Explicabo optio.', 'Perspiciatis deserunt non omnis natus esse doloribus. Et ab blanditiis aliquam aut. Eaque est itaque eos.', '2016-02-22', '2016-02-27', '', NULL, '2016-05-02 21:20:12', '2016-05-02 21:20:12');
-- --------------------------------------------------------
--
-- Table structure for table `expenses`
--
CREATE TABLE IF NOT EXISTS `expenses` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL,
`item_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`purchase_from` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`purchase_date` date NOT NULL,
`amount` decimal(7,2) NOT NULL,
`attachment` text COLLATE utf8_unicode_ci NOT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `holidays`
--
CREATE TABLE IF NOT EXISTS `holidays` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`occasion` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`date` date NOT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `job_vacancies`
--
CREATE TABLE IF NOT EXISTS `job_vacancies` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`job_title` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`user_id` int(11) NOT NULL,
`status` tinyint(1) NOT NULL,
`details` text COLLATE utf8_unicode_ci NOT NULL,
`type` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `leaves`
--
CREATE TABLE IF NOT EXISTS `leaves` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`user_id` int(11) NOT NULL,
`leave_type_id` int(11) NOT NULL,
`date_from` date NOT NULL,
`date_to` date NOT NULL,
`applied_on` date NOT NULL,
`reason` text COLLATE utf8_unicode_ci NOT NULL,
`comment` text COLLATE utf8_unicode_ci NOT NULL,
`status` tinyint(1) NOT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `leave_types`
--
CREATE TABLE IF NOT EXISTS `leave_types` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`leave_type` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=6 ;
--
-- Dumping data for table `leave_types`
--
INSERT INTO `leave_types` (`id`, `leave_type`, `deleted_at`, `created_at`, `updated_at`) VALUES
(1, 'Vacation Leave', NULL, '2016-05-02 21:20:07', '2016-05-02 21:20:07'),
(2, 'Sick Leave', NULL, '2016-05-02 21:20:07', '2016-05-02 21:20:07'),
(3, 'Maternal Leave', NULL, '2016-05-02 21:20:07', '2016-05-02 21:20:07'),
(4, 'Paternal Leave', NULL, '2016-05-02 21:20:07', '2016-05-02 21:20:07'),
(5, 'Birthday Leave', NULL, '2016-05-02 21:20:07', '2016-05-02 21:20:07');
-- --------------------------------------------------------
--
-- Table structure for table `migrations`
--
CREATE TABLE IF NOT EXISTS `migrations` (
`migration` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`batch` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Dumping data for table `migrations`
--
INSERT INTO `migrations` (`migration`, `batch`) VALUES
('2014_10_12_000000_create_users_table', 1),
('2014_10_12_100000_create_password_resets_table', 1),
('2016_01_14_025419_create_departments_table', 1),
('2016_01_14_053708_create_bank_accounts_table', 1),
('2016_01_14_053728_create_roles_table', 1),
('2016_01_14_053811_create_document_types_table', 1),
('2016_01_14_053926_create_expenses_table', 1),
('2016_01_14_054052_create_leave_types_table', 1),
('2016_01_14_054950_create_events_table', 1),
('2016_01_15_043254_create_holidays_table', 1),
('2016_01_19_084359_create_notices_table', 1),
('2016_01_19_101239_create_designation_items_table', 1),
('2016_01_19_101350_create_designations_table', 1),
('2016_01_19_101452_create_leaves_table', 1),
('2016_01_19_101544_create_absences_table', 1),
('2016_01_19_101626_create_documents_table', 1),
('2016_01_19_101709_create_awards_table', 1),
('2016_04_04_060813_create_permissions_table', 1),
('2016_04_04_061152_create_role_permissions_table', 1),
('2016_04_13_025653_create_job_vacancies_table', 1),
('2016_04_13_031905_create_candidates_table', 1),
('2016_05_02_080304_create_attendances_table', 1),
('2016_05_02_081949_create_cut_offs_table', 1);
-- --------------------------------------------------------
--
-- Table structure for table `notices`
--
CREATE TABLE IF NOT EXISTS `notices` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`published` tinyint(1) NOT NULL,
`title` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`description` text COLLATE utf8_unicode_ci NOT NULL,
`image` text COLLATE utf8_unicode_ci NOT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=21 ;
--
-- Dumping data for table `notices`
--
INSERT INTO `notices` (`id`, `published`, `title`, `description`, `image`, `deleted_at`, `created_at`, `updated_at`) VALUES
(1, 1, 'Repellat ea odit.', 'Illo enim reiciendis asperiores pariatur assumenda. Eaque saepe quo rerum magni vel fugit unde.', '', NULL, '2016-02-18 16:00:00', '2016-02-18 16:00:00'),
(2, 1, 'Ducimus culpa et.', 'Vitae sed quis occaecati autem et et. Optio aut ut dolorum illum voluptates dolores. Pariatur reprehenderit minus blanditiis ducimus aut.', '', NULL, '2016-03-19 16:00:00', '2016-03-19 16:00:00'),
(3, 1, 'Neque error quam.', 'Quis natus sit omnis sunt sunt. Reiciendis et suscipit amet aut quis.', '', NULL, '2016-03-11 16:00:00', '2016-03-11 16:00:00'),
(4, 1, 'Nisi cupiditate in.', 'Molestiae maxime qui qui. Cupiditate quae sit consequatur accusantium quos. Consequatur porro voluptatem voluptates dignissimos quasi. Dolorum id aut aperiam nostrum.', '', NULL, '2016-02-15 16:00:00', '2016-02-15 16:00:00'),
(5, 1, 'Minus consequatur.', 'Sint vel beatae placeat enim ut. Est rerum placeat repellat. Id et qui dolores iusto.', '', NULL, '2016-03-14 16:00:00', '2016-03-14 16:00:00'),
(6, 1, 'Quas quisquam.', 'Molestias iure voluptates inventore sit. Mollitia nam quia sunt similique consequuntur. Voluptatem officiis voluptatem sunt. Autem delectus enim et.', '', NULL, '2016-03-06 16:00:00', '2016-03-06 16:00:00'),
(7, 1, 'Hic enim a dolorem.', 'Distinctio suscipit sit quia recusandae est voluptatem inventore. Eum voluptatem voluptas eaque rerum aperiam. Recusandae exercitationem voluptate eum ut a aliquam omnis.', '', NULL, '2016-03-17 16:00:00', '2016-03-17 16:00:00'),
(8, 1, 'Eos minus quae id.', 'Ut odio quia id consequatur. In saepe incidunt odio dolores praesentium.', '', NULL, '2016-02-17 16:00:00', '2016-02-17 16:00:00'),
(9, 1, 'Alias eos ipsa.', 'Architecto velit odit quibusdam sunt quaerat molestiae. Quia tenetur officiis voluptatibus repellendus maxime. Non consequuntur quas molestiae voluptas.', '', NULL, '2016-03-11 16:00:00', '2016-03-11 16:00:00'),
(10, 1, 'Adipisci laboriosam.', 'Architecto quia quo esse commodi. Ducimus odit nobis magnam rerum modi sint. Ut quis aspernatur eos minima est est dolorem.', '', NULL, '2016-02-17 16:00:00', '2016-02-17 16:00:00'),
(11, 1, 'Perferendis.', 'In ut aspernatur consequatur repudiandae ipsa. Suscipit repudiandae ullam sapiente rem minus omnis. Nam deleniti in quam minima non tempora.', '', NULL, '2016-02-09 16:00:00', '2016-02-09 16:00:00'),
(12, 1, 'Quibusdam.', 'Ut eligendi et est quod quia et. Consequuntur dolor nihil et sint. Et tenetur voluptatem ut magnam quae aut assumenda molestias. Alias repellat cumque velit ab. Optio nulla dolorem eum illo nam amet.', '', NULL, '2016-03-17 16:00:00', '2016-03-17 16:00:00'),
(13, 1, 'Et delectus.', 'Fugiat provident incidunt voluptas aut commodi neque expedita. Eveniet qui dolorem earum aut. Et quibusdam officiis velit exercitationem deleniti dignissimos molestias.', '', NULL, '2016-03-07 16:00:00', '2016-03-07 16:00:00'),
(14, 1, 'Et maiores quo.', 'Dolore laborum unde consequatur voluptas quia rem autem. Enim distinctio ut non neque sint saepe. Eaque vel exercitationem incidunt quia libero. Fugiat magni aut velit natus consequatur.', '', NULL, '2016-03-10 16:00:00', '2016-03-10 16:00:00'),
(15, 1, 'Sapiente explicabo.', 'Cum dolorem ea voluptatibus sint. Accusamus perspiciatis perspiciatis ipsam. Ad non in sequi quia veniam.', '', NULL, '2016-02-18 16:00:00', '2016-02-18 16:00:00'),
(16, 1, 'Blanditiis.', 'Quis rerum tempora totam non veritatis aut. Aut et dolor cumque ut. Quisquam quibusdam quis dolor suscipit. Rerum quo incidunt officia id velit quod tempore numquam.', '', NULL, '2016-02-10 16:00:00', '2016-02-10 16:00:00'),
(17, 1, 'Numquam modi nisi.', 'Aspernatur sit atque inventore velit quia. Nisi ut occaecati veniam ipsa libero facere sed. Mollitia nemo quae qui aliquam. Quia tenetur omnis quaerat in eos.', '', NULL, '2016-03-02 16:00:00', '2016-03-02 16:00:00'),
(18, 1, 'Dolores ipsam ut.', 'Eum sed quo magni. Nulla soluta voluptas pariatur voluptatem sed ratione fugiat. Necessitatibus itaque ad voluptatibus numquam natus voluptas qui laboriosam. Nostrum perferendis ea non explicabo.', '', NULL, '2016-02-22 16:00:00', '2016-02-22 16:00:00'),
(19, 1, 'Accusamus qui nemo.', 'Distinctio velit perferendis eveniet eum excepturi. Quo temporibus ipsam id.\nPossimus quia rerum delectus. Voluptatum hic nobis non illum ex maxime.', '', NULL, '2016-03-09 16:00:00', '2016-03-09 16:00:00'),
(20, 1, 'Ipsa sit ab est ut.', 'Qui sapiente aperiam omnis assumenda et vel. Sunt commodi sed quia minima quod est. Eligendi culpa optio sit suscipit rem in error reprehenderit. Et molestiae error occaecati repudiandae laborum.', '', NULL, '2016-03-13 16:00:00', '2016-03-13 16:00:00');
-- --------------------------------------------------------
--
-- Table structure for table `password_resets`
--
CREATE TABLE IF NOT EXISTS `password_resets` (
`email` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`token` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`created_at` timestamp NOT NULL,
KEY `password_resets_email_index` (`email`),
KEY `password_resets_token_index` (`token`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `permissions`
--
CREATE TABLE IF NOT EXISTS `permissions` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`permission` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`label` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`level` tinyint(1) NOT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=77 ;
--
-- Dumping data for table `permissions`
--
INSERT INTO `permissions` (`id`, `permission`, `label`, `level`, `deleted_at`, `created_at`, `updated_at`) VALUES
(1, 'view_absences', 'View Absences', 1, NULL, '2016-05-02 21:20:12', '2016-05-02 21:20:12'),
(2, 'create_absences', 'Create Absences', 1, NULL, '2016-05-02 21:20:12', '2016-05-02 21:20:12'),
(3, 'edit_absences', 'Edit Absences', 1, NULL, '2016-05-02 21:20:12', '2016-05-02 21:20:12'),
(4, 'delete_absences', 'Delete Absences', 1, NULL, '2016-05-02 21:20:12', '2016-05-02 21:20:12'),
(5, 'view_awards', 'View Awards', 1, NULL, '2016-05-02 21:20:12', '2016-05-02 21:20:12'),
(6, 'create_awards', 'Create Awards', 1, NULL, '2016-05-02 21:20:12', '2016-05-02 21:20:12'),
(7, 'edit_awards', 'Edit Awards', 1, NULL, '2016-05-02 21:20:12', '2016-05-02 21:20:12'),
(8, 'delete_awards', 'Delete Awards', 1, NULL, '2016-05-02 21:20:12', '2016-05-02 21:20:12'),
(9, 'view_bank_accounts', 'View Bank Accounts', 0, NULL, '2016-05-02 21:20:12', '2016-05-02 21:20:12'),
(10, 'create_bank_accounts', 'Create Bank Accounts', 0, NULL, '2016-05-02 21:20:12', '2016-05-02 21:20:12'),
(11, 'edit_bank_accounts', 'Edit Bank Accounts', 0, NULL, '2016-05-02 21:20:12', '2016-05-02 21:20:12'),
(12, 'delete_bank_accounts', 'Delete Bank Accounts', 0, NULL, '2016-05-02 21:20:12', '2016-05-02 21:20:12'),
(13, 'view_departments', 'View Departments', 0, NULL, '2016-05-02 21:20:12', '2016-05-02 21:20:12'),
(14, 'create_departments', 'Create Departments', 0, NULL, '2016-05-02 21:20:12', '2016-05-02 21:20:12'),
(15, 'edit_departments', 'Edit Departments', 0, NULL, '2016-05-02 21:20:12', '2016-05-02 21:20:12'),
(16, 'delete_departments', 'Delete Departments', 0, NULL, '2016-05-02 21:20:12', '2016-05-02 21:20:12'),
(17, 'view_designations', 'View Designations', 1, NULL, '2016-05-02 21:20:12', '2016-05-02 21:20:12'),
(18, 'create_designations', 'Create Designations', 1, NULL, '2016-05-02 21:20:13', '2016-05-02 21:20:13'),
(19, 'edit_designations', 'Edit Designations', 1, NULL, '2016-05-02 21:20:13', '2016-05-02 21:20:13'),
(20, 'delete_designations', 'Delete Designations', 1, NULL, '2016-05-02 21:20:13', '2016-05-02 21:20:13'),
(21, 'view_designation_items', 'View Designation Items', 0, NULL, '2016-05-02 21:20:13', '2016-05-02 21:20:13'),
(22, 'create_designation_items', 'Create Designation Items', 0, NULL, '2016-05-02 21:20:13', '2016-05-02 21:20:13'),
(23, 'edit_designation_items', 'Edit Designation Items', 0, NULL, '2016-05-02 21:20:13', '2016-05-02 21:20:13'),
(24, 'delete_designation_items', 'Delete Designation Items', 0, NULL, '2016-05-02 21:20:13', '2016-05-02 21:20:13'),
(25, 'view_documents', 'View Documents', 1, NULL, '2016-05-02 21:20:13', '2016-05-02 21:20:13'),
(26, 'create_documents', 'Create Documents', 1, NULL, '2016-05-02 21:20:13', '2016-05-02 21:20:13'),
(27, 'edit_documents', 'Edit Documents', 1, NULL, '2016-05-02 21:20:13', '2016-05-02 21:20:13'),
(28, 'delete_documents', 'Delete Documents', 1, NULL, '2016-05-02 21:20:13', '2016-05-02 21:20:13'),
(29, 'view_document_types', 'View Document Types', 0, NULL, '2016-05-02 21:20:13', '2016-05-02 21:20:13'),
(30, 'create_document_types', 'Create Document Types', 0, NULL, '2016-05-02 21:20:13', '2016-05-02 21:20:13'),
(31, 'edit_document_types', 'Edit Document Types', 0, NULL, '2016-05-02 21:20:13', '2016-05-02 21:20:13'),
(32, 'delete_document_types', 'Delete Document Types', 0, NULL, '2016-05-02 21:20:13', '2016-05-02 21:20:13'),
(33, 'view_events', 'View Events', 0, NULL, '2016-05-02 21:20:13', '2016-05-02 21:20:13'),
(34, 'create_events', 'Create Events', 0, NULL, '2016-05-02 21:20:13', '2016-05-02 21:20:13'),
(35, 'edit_events', 'Edit Events', 0, NULL, '2016-05-02 21:20:13', '2016-05-02 21:20:13'),
(36, 'delete_events', 'Delete Events', 0, NULL, '2016-05-02 21:20:13', '2016-05-02 21:20:13'),
(37, 'view_expenses', 'View Expenses', 1, NULL, '2016-05-02 21:20:13', '2016-05-02 21:20:13'),
(38, 'create_expenses', 'Create Expenses', 1, NULL, '2016-05-02 21:20:13', '2016-05-02 21:20:13'),
(39, 'edit_expenses', 'Edit Expenses', 1, NULL, '2016-05-02 21:20:13', '2016-05-02 21:20:13'),
(40, 'delete_expenses', 'Delete Expenses', 1, NULL, '2016-05-02 21:20:13', '2016-05-02 21:20:13'),
(41, 'view_holidays', 'View Holidays', 0, NULL, '2016-05-02 21:20:13', '2016-05-02 21:20:13'),
(42, 'create_holidays', 'Create Holidays', 0, NULL, '2016-05-02 21:20:13', '2016-05-02 21:20:13'),
(43, 'edit_holidays', 'Edit Holidays', 0, NULL, '2016-05-02 21:20:13', '2016-05-02 21:20:13'),
(44, 'delete_holidays', 'Delete Holidays', 0, NULL, '2016-05-02 21:20:13', '2016-05-02 21:20:13'),
(45, 'view_leaves', 'View Leaves', 1, NULL, '2016-05-02 21:20:13', '2016-05-02 21:20:13'),
(46, 'create_leaves', 'Create Leaves', 1, NULL, '2016-05-02 21:20:13', '2016-05-02 21:20:13'),
(47, 'edit_leaves', 'Edit Leaves', 1, NULL, '2016-05-02 21:20:13', '2016-05-02 21:20:13'),
(48, 'delete_leaves', 'Delete Leaves', 1, NULL, '2016-05-02 21:20:13', '2016-05-02 21:20:13'),
(49, 'view_leave_types', 'View Leave Types', 0, NULL, '2016-05-02 21:20:13', '2016-05-02 21:20:13'),
(50, 'create_leave_types', 'Create Leave Types', 0, NULL, '2016-05-02 21:20:13', '2016-05-02 21:20:13'),
(51, 'edit_leave_types', 'Edit Leave Types', 0, NULL, '2016-05-02 21:20:13', '2016-05-02 21:20:13'),
(52, 'delete_leave_types', 'Delete Leave Types', 0, NULL, '2016-05-02 21:20:13', '2016-05-02 21:20:13'),
(53, 'view_notices', 'View Notices', 0, NULL, '2016-05-02 21:20:13', '2016-05-02 21:20:13'),
(54, 'create_notices', 'Create Notices', 0, NULL, '2016-05-02 21:20:13', '2016-05-02 21:20:13'),
(55, 'edit_notices', 'Edit Notices', 0, NULL, '2016-05-02 21:20:13', '2016-05-02 21:20:13'),
(56, 'delete_notices', 'Delete Notices', 0, NULL, '2016-05-02 21:20:13', '2016-05-02 21:20:13'),
(57, 'view_users', 'View Users', 1, NULL, '2016-05-02 21:20:13', '2016-05-02 21:20:13'),
(58, 'create_users', 'Create Users', 1, NULL, '2016-05-02 21:20:13', '2016-05-02 21:20:13'),
(59, 'edit_users', 'Edit Users', 1, NULL, '2016-05-02 21:20:13', '2016-05-02 21:20:13'),
(60, 'delete_users', 'Delete Users', 1, NULL, '2016-05-02 21:20:13', '2016-05-02 21:20:13'),
(61, 'view_job_vacancies', 'View Job Vacancies', 0, NULL, '2016-05-02 21:20:13', '2016-05-02 21:20:13'),
(62, 'create_job_vacancies', 'Create Job Vacancies', 0, NULL, '2016-05-02 21:20:13', '2016-05-02 21:20:13'),
(63, 'edit_job_vacancies', 'Edit Job Vacancies', 0, NULL, '2016-05-02 21:20:13', '2016-05-02 21:20:13'),
(64, 'delete_job_vacancies', 'Delete Job Vacancies', 0, NULL, '2016-05-02 21:20:13', '2016-05-02 21:20:13'),
(65, 'view_candidates', 'View Candidates', 0, NULL, '2016-05-02 21:20:13', '2016-05-02 21:20:13'),
(66, 'create_candidates', 'Create Candidates', 0, NULL, '2016-05-02 21:20:13', '2016-05-02 21:20:13'),
(67, 'edit_candidates', 'Edit Candidates', 0, NULL, '2016-05-02 21:20:13', '2016-05-02 21:20:13'),
(68, 'delete_candidates', 'Delete Candidates', 0, NULL, '2016-05-02 21:20:13', '2016-05-02 21:20:13'),
(69, 'view_attendances', 'View Attendances', 1, NULL, '2016-05-02 21:20:13', '2016-05-02 21:20:13'),
(70, 'create_attendances', 'Create Attendances', 1, NULL, '2016-05-02 21:20:13', '2016-05-02 21:20:13'),
(71, 'edit_attendances', 'Edit Attendances', 1, NULL, '2016-05-02 21:20:13', '2016-05-02 21:20:13'),
(72, 'delete_attendances', 'Delete Attendances', 1, NULL, '2016-05-02 21:20:13', '2016-05-02 21:20:13'),
(73, 'view_cut_offs', 'View Cut Offs', 1, NULL, '2016-05-02 21:20:13', '2016-05-02 21:20:13'),
(74, 'create_cut_offs', 'Create Cut Offs', 1, NULL, '2016-05-02 21:20:13', '2016-05-02 21:20:13'),
(75, 'edit_cut_offs', 'Edit Cut Offs', 1, NULL, '2016-05-02 21:20:13', '2016-05-02 21:20:13'),
(76, 'delete_cut_offs', 'Delete Cut Offs', 1, NULL, '2016-05-02 21:20:13', '2016-05-02 21:20:13');
-- --------------------------------------------------------
--
-- Table structure for table `roles`
--
CREATE TABLE IF NOT EXISTS `roles` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`role` varchar(60) COLLATE utf8_unicode_ci NOT NULL,
`layout` tinyint(1) NOT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=4 ;
--
-- Dumping data for table `roles`
--
INSERT INTO `roles` (`id`, `role`, `layout`, `deleted_at`, `created_at`, `updated_at`) VALUES
(1, 'Administrator', 1, NULL, '2016-05-02 21:20:06', '2016-05-02 21:20:06'),
(2, 'Employee', 0, NULL, '2016-05-02 21:20:06', '2016-05-02 21:20:06'),
(3, 'Team Leader/Manager', 0, NULL, '2016-05-02 21:20:06', '2016-05-02 21:20:06');
-- --------------------------------------------------------
--
-- Table structure for table `role_permissions`
--
CREATE TABLE IF NOT EXISTS `role_permissions` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`permission_id` int(11) NOT NULL,
`role_id` int(11) NOT NULL,
`level` varchar(4) COLLATE utf8_unicode_ci DEFAULT NULL,
`deleted_at` timestamp NULL DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=131 ;
--
-- Dumping data for table `role_permissions`
--
INSERT INTO `role_permissions` (`id`, `permission_id`, `role_id`, `level`, `deleted_at`, `created_at`, `updated_at`) VALUES
(1, 1, 1, 'all', NULL, '2016-05-02 21:20:14', '2016-05-02 21:20:14'),
(2, 2, 1, 'all', NULL, '2016-05-02 21:20:14', '2016-05-02 21:20:14'),
(3, 3, 1, 'all', NULL, '2016-05-02 21:20:14', '2016-05-02 21:20:14'),
(4, 4, 1, 'all', NULL, '2016-05-02 21:20:14', '2016-05-02 21:20:14'),
(5, 5, 1, 'all', NULL, '2016-05-02 21:20:14', '2016-05-02 21:20:14'),
(6, 6, 1, 'all', NULL, '2016-05-02 21:20:14', '2016-05-02 21:20:14'),
(7, 7, 1, 'all', NULL, '2016-05-02 21:20:14', '2016-05-02 21:20:14'),
(8, 8, 1, 'all', NULL, '2016-05-02 21:20:14', '2016-05-02 21:20:14'),
(9, 9, 1, NULL, NULL, '2016-05-02 21:20:14', '2016-05-02 21:20:14'),
(10, 10, 1, NULL, NULL, '2016-05-02 21:20:14', '2016-05-02 21:20:14'),
(11, 11, 1, NULL, NULL, '2016-05-02 21:20:14', '2016-05-02 21:20:14'),
(12, 12, 1, NULL, NULL, '2016-05-02 21:20:14', '2016-05-02 21:20:14'),
(13, 13, 1, NULL, NULL, '2016-05-02 21:20:14', '2016-05-02 21:20:14'),
(14, 14, 1, NULL, NULL, '2016-05-02 21:20:14', '2016-05-02 21:20:14'),
(15, 15, 1, NULL, NULL, '2016-05-02 21:20:14', '2016-05-02 21:20:14'),
(16, 16, 1, NULL, NULL, '2016-05-02 21:20:14', '2016-05-02 21:20:14'),
(17, 17, 1, 'all', NULL, '2016-05-02 21:20:14', '2016-05-02 21:20:14'),
(18, 18, 1, 'all', NULL, '2016-05-02 21:20:14', '2016-05-02 21:20:14'),
(19, 19, 1, 'all', NULL, '2016-05-02 21:20:14', '2016-05-02 21:20:14'),
(20, 20, 1, 'all', NULL, '2016-05-02 21:20:14', '2016-05-02 21:20:14'),
(21, 21, 1, NULL, NULL, '2016-05-02 21:20:14', '2016-05-02 21:20:14'),
(22, 22, 1, NULL, NULL, '2016-05-02 21:20:14', '2016-05-02 21:20:14'),
(23, 23, 1, NULL, NULL, '2016-05-02 21:20:14', '2016-05-02 21:20:14'),
(24, 24, 1, NULL, NULL, '2016-05-02 21:20:14', '2016-05-02 21:20:14'),
(25, 25, 1, 'all', NULL, '2016-05-02 21:20:14', '2016-05-02 21:20:14'),
(26, 26, 1, 'all', NULL, '2016-05-02 21:20:14', '2016-05-02 21:20:14'),
(27, 27, 1, 'all', NULL, '2016-05-02 21:20:14', '2016-05-02 21:20:14'),
(28, 28, 1, 'all', NULL, '2016-05-02 21:20:14', '2016-05-02 21:20:14'),
(29, 29, 1, NULL, NULL, '2016-05-02 21:20:14', '2016-05-02 21:20:14'),
(30, 30, 1, NULL, NULL, '2016-05-02 21:20:14', '2016-05-02 21:20:14'),
(31, 31, 1, NULL, NULL, '2016-05-02 21:20:14', '2016-05-02 21:20:14'),
(32, 32, 1, NULL, NULL, '2016-05-02 21:20:14', '2016-05-02 21:20:14'),
(33, 33, 1, NULL, NULL, '2016-05-02 21:20:14', '2016-05-02 21:20:14'),
(34, 34, 1, NULL, NULL, '2016-05-02 21:20:14', '2016-05-02 21:20:14'),
(35, 35, 1, NULL, NULL, '2016-05-02 21:20:14', '2016-05-02 21:20:14'),
(36, 36, 1, NULL, NULL, '2016-05-02 21:20:14', '2016-05-02 21:20:14'),
(37, 37, 1, 'all', NULL, '2016-05-02 21:20:14', '2016-05-02 21:20:14'),
(38, 38, 1, 'all', NULL, '2016-05-02 21:20:14', '2016-05-02 21:20:14'),
(39, 39, 1, 'all', NULL, '2016-05-02 21:20:14', '2016-05-02 21:20:14'),
(40, 40, 1, 'all', NULL, '2016-05-02 21:20:14', '2016-05-02 21:20:14'),
(41, 41, 1, NULL, NULL, '2016-05-02 21:20:14', '2016-05-02 21:20:14'),
(42, 42, 1, NULL, NULL, '2016-05-02 21:20:14', '2016-05-02 21:20:14'),
(43, 43, 1, NULL, NULL, '2016-05-02 21:20:14', '2016-05-02 21:20:14'),
(44, 44, 1, NULL, NULL, '2016-05-02 21:20:14', '2016-05-02 21:20:14'),
(45, 45, 1, 'all', NULL, '2016-05-02 21:20:14', '2016-05-02 21:20:14'),
(46, 46, 1, 'all', NULL, '2016-05-02 21:20:14', '2016-05-02 21:20:14'),
(47, 47, 1, 'all', NULL, '2016-05-02 21:20:14', '2016-05-02 21:20:14'),
(48, 48, 1, 'all', NULL, '2016-05-02 21:20:14', '2016-05-02 21:20:14'),
(49, 49, 1, NULL, NULL, '2016-05-02 21:20:14', '2016-05-02 21:20:14'),
(50, 50, 1, NULL, NULL, '2016-05-02 21:20:14', '2016-05-02 21:20:14'),
(51, 51, 1, NULL, NULL, '2016-05-02 21:20:14', '2016-05-02 21:20:14'),
(52, 52, 1, NULL, NULL, '2016-05-02 21:20:14', '2016-05-02 21:20:14'),
(53, 53, 1, NULL, NULL, '2016-05-02 21:20:14', '2016-05-02 21:20:14'),
(54, 54, 1, NULL, NULL, '2016-05-02 21:20:14', '2016-05-02 21:20:14'),
(55, 55, 1, NULL, NULL, '2016-05-02 21:20:14', '2016-05-02 21:20:14'),
(56, 56, 1, NULL, NULL, '2016-05-02 21:20:14', '2016-05-02 21:20:14'),
(57, 57, 1, 'all', NULL, '2016-05-02 21:20:14', '2016-05-02 21:20:14'),
(58, 58, 1, 'all', NULL, '2016-05-02 21:20:14', '2016-05-02 21:20:14'),
(59, 59, 1, 'all', NULL, '2016-05-02 21:20:14', '2016-05-02 21:20:14'),
(60, 60, 1, 'all', NULL, '2016-05-02 21:20:14', '2016-05-02 21:20:14'),
(61, 61, 1, NULL, NULL, '2016-05-02 21:20:14', '2016-05-02 21:20:14'),
(62, 62, 1, NULL, NULL, '2016-05-02 21:20:14', '2016-05-02 21:20:14'),
(63, 63, 1, NULL, NULL, '2016-05-02 21:20:14', '2016-05-02 21:20:14'),
(64, 64, 1, NULL, NULL, '2016-05-02 21:20:14', '2016-05-02 21:20:14'),
(65, 65, 1, NULL, NULL, '2016-05-02 21:20:14', '2016-05-02 21:20:14'),
(66, 66, 1, NULL, NULL, '2016-05-02 21:20:14', '2016-05-02 21:20:14'),
(67, 67, 1, NULL, NULL, '2016-05-02 21:20:14', '2016-05-02 21:20:14'),
(68, 68, 1, NULL, NULL, '2016-05-02 21:20:14', '2016-05-02 21:20:14'),
(69, 69, 1, 'all', NULL, '2016-05-02 21:20:14', '2016-05-02 21:20:14'),
(70, 70, 1, 'all', NULL, '2016-05-02 21:20:14', '2016-05-02 21:20:14'),
(71, 71, 1, 'all', NULL, '2016-05-02 21:20:14', '2016-05-02 21:20:14'),
(72, 72, 1, 'all', NULL, '2016-05-02 21:20:14', '2016-05-02 21:20:14'),
(73, 73, 1, 'all', NULL, '2016-05-02 21:20:14', '2016-05-02 21:20:14'),
(74, 74, 1, 'all', NULL, '2016-05-02 21:20:14', '2016-05-02 21:20:14'),
(75, 75, 1, 'all', NULL, '2016-05-02 21:20:14', '2016-05-02 21:20:14'),
(76, 76, 1, 'all', NULL, '2016-05-02 21:20:15', '2016-05-02 21:20:15'),
(77, 1, 2, 'self', NULL, '2016-05-02 21:20:15', '2016-05-02 21:20:15'),
(78, 5, 2, 'team', NULL, '2016-05-02 21:20:15', '2016-05-02 21:20:15'),
(79, 25, 2, 'self', NULL, '2016-05-02 21:20:15', '2016-05-02 21:20:15'),
(80, 33, 2, NULL, NULL, '2016-05-02 21:20:15', '2016-05-02 21:20:15'),
(81, 37, 2, 'self', NULL, '2016-05-02 21:20:15', '2016-05-02 21:20:15'),
(82, 41, 2, NULL, NULL, '2016-05-02 21:20:15', '2016-05-02 21:20:15'),
(83, 45, 2, 'team', NULL, '2016-05-02 21:20:15', '2016-05-02 21:20:15'),
(84, 46, 2, 'self', NULL, '2016-05-02 21:20:15', '2016-05-02 21:20:15'),
(85, 53, 2, NULL, NULL, '2016-05-02 21:20:15', '2016-05-02 21:20:15'),
(86, 61, 2, NULL, NULL, '2016-05-02 21:20:15', '2016-05-02 21:20:15'),
(87, 1, 3, 'team', NULL, '2016-05-02 21:20:15', '2016-05-02 21:20:15'),