-
Notifications
You must be signed in to change notification settings - Fork 7
/
sid.install
1889 lines (1888 loc) · 82.2 KB
/
sid.install
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
CREATE TABLE IF NOT EXISTS `analisis_indikator` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`id_master` int(11) NOT NULL,
`nomor` int(3) NOT NULL,
`pertanyaan` varchar(400) NOT NULL,
`id_tipe` tinyint(4) NOT NULL DEFAULT '1',
`bobot` tinyint(4) NOT NULL DEFAULT '0',
`act_analisis` tinyint(1) NOT NULL DEFAULT '2',
`id_kategori` tinyint(4) NOT NULL,
`is_publik` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `id_master` (`id_master`,`id_tipe`),
KEY `id_tipe` (`id_tipe`),
KEY `id_kategori` (`id_kategori`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- `analisis_kategori_indikator`
CREATE TABLE IF NOT EXISTS `analisis_kategori_indikator` (
`id` tinyint(4) NOT NULL AUTO_INCREMENT,
`id_master` tinyint(4) NOT NULL,
`kategori_kode` varchar(3) NOT NULL,
`kategori` varchar(50) NOT NULL,
PRIMARY KEY (`id`),
KEY `id_master` (`id_master`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- `analisis_klasifikasi`
CREATE TABLE IF NOT EXISTS `analisis_klasifikasi` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`id_master` int(11) NOT NULL,
`nama` varchar(20) NOT NULL,
`minval` double(5,2) NOT NULL,
`maxval` double(5,2) NOT NULL,
PRIMARY KEY (`id`),
KEY `id_master` (`id_master`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- `analisis_master`
CREATE TABLE IF NOT EXISTS `analisis_master` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`nama` varchar(40) NOT NULL,
`subjek_tipe` tinyint(4) NOT NULL,
`lock` tinyint(1) NOT NULL DEFAULT '1',
`deskripsi` text NOT NULL,
`kode_analisis` varchar(5) NOT NULL DEFAULT '00000',
`id_child` smallint(4) NOT NULL,
`id_kelompok` int(11) NOT NULL,
`pembagi` varchar(10) NOT NULL DEFAULT '100',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- `analisis_parameter`
CREATE TABLE IF NOT EXISTS `analisis_parameter` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`id_indikator` int(11) NOT NULL,
`kode_jawaban` int(3) NOT NULL,
`asign` tinyint(1) NOT NULL DEFAULT '0',
`jawaban` varchar(200) NOT NULL,
`nilai` tinyint(4) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`),
KEY `id_indikator` (`id_indikator`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- `analisis_partisipasi`
CREATE TABLE IF NOT EXISTS `analisis_partisipasi` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`id_subjek` int(11) NOT NULL,
`id_master` int(11) NOT NULL,
`id_periode` int(11) NOT NULL,
`id_klassifikasi` int(11) NOT NULL DEFAULT '1',
PRIMARY KEY (`id`),
KEY `id_subjek` (`id_subjek`,`id_master`,`id_periode`,`id_klassifikasi`),
KEY `id_master` (`id_master`),
KEY `id_periode` (`id_periode`),
KEY `id_klassifikasi` (`id_klassifikasi`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- `analisis_periode`
CREATE TABLE IF NOT EXISTS `analisis_periode` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`id_master` int(11) NOT NULL,
`nama` varchar(50) NOT NULL,
`id_state` tinyint(4) NOT NULL DEFAULT '1',
`aktif` tinyint(1) NOT NULL DEFAULT '0',
`keterangan` varchar(100) NOT NULL,
`tahun_pelaksanaan` year(4) NOT NULL,
PRIMARY KEY (`id`),
KEY `id_master` (`id_master`),
KEY `id_state` (`id_state`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- `analisis_ref_state`
CREATE TABLE IF NOT EXISTS `analisis_ref_state` (
`id` tinyint(4) NOT NULL AUTO_INCREMENT,
`nama` varchar(40) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=4 ;
-- Dumping data for table `analisis_ref_state`
INSERT INTO `analisis_ref_state` (`id`, `nama`) VALUES
(1, 'Belum Entri / Pendataan'),
(2, 'Sedang Dalam Pendataan'),
(3, 'Selesai Entri / Pendataan');
-- `analisis_ref_subjek`
CREATE TABLE IF NOT EXISTS `analisis_ref_subjek` (
`id` tinyint(4) NOT NULL AUTO_INCREMENT,
`subjek` varchar(20) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=5 ;
-- Dumping data for table `analisis_ref_subjek`
INSERT INTO `analisis_ref_subjek` (`id`, `subjek`) VALUES
(1, 'Penduduk'),
(2, 'Keluarga / KK'),
(3, 'Rumah Tangga'),
(4, 'Kelompok');
-- `analisis_respon`
CREATE TABLE IF NOT EXISTS `analisis_respon` (
`id_indikator` int(11) NOT NULL,
`id_parameter` int(11) NOT NULL,
`id_subjek` int(11) NOT NULL,
`id_periode` int(11) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- `analisis_respon_bukti`
CREATE TABLE IF NOT EXISTS `analisis_respon_bukti` (
`id_master` tinyint(4) NOT NULL,
`id_periode` tinyint(4) NOT NULL,
`id_subjek` int(11) NOT NULL,
`pengesahan` varchar(100) NOT NULL,
`tgl_update` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- `analisis_respon_hasil`
CREATE TABLE IF NOT EXISTS `analisis_respon_hasil` (
`id_master` tinyint(4) NOT NULL,
`id_periode` tinyint(4) NOT NULL,
`id_subjek` int(11) NOT NULL,
`akumulasi` double(8,3) NOT NULL,
`tgl_update` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
UNIQUE KEY `id_master` (`id_master`,`id_periode`,`id_subjek`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- `analisis_tipe_indikator`
CREATE TABLE IF NOT EXISTS `analisis_tipe_indikator` (
`id` tinyint(4) NOT NULL AUTO_INCREMENT,
`tipe` varchar(20) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=5 ;
-- Dumping data for table `analisis_tipe_indikator`
INSERT INTO `analisis_tipe_indikator` (`id`, `tipe`) VALUES
(1, 'Pilihan (Tunggal)'),
(2, 'Pilihan (Multivalue)'),
(3, 'Isian Angka'),
(4, 'Isian Tulisan');
-- `area`
CREATE TABLE IF NOT EXISTS `area` (
`id` int(4) NOT NULL AUTO_INCREMENT,
`nama` varchar(50) NOT NULL,
`path` text NOT NULL,
`enabled` int(11) NOT NULL DEFAULT '1',
`ref_polygon` int(9) NOT NULL,
`foto` varchar(100) NOT NULL,
`id_cluster` int(11) NOT NULL,
`desk` text NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- `artikel`
CREATE TABLE IF NOT EXISTS `artikel` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`gambar` varchar(200) NOT NULL,
`isi` text NOT NULL,
`enabled` int(2) NOT NULL DEFAULT '1',
`tgl_upload` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`id_kategori` int(4) NOT NULL,
`id_user` int(4) NOT NULL,
`judul` varchar(100) NOT NULL,
`headline` int(1) NOT NULL DEFAULT '0',
`gambar1` varchar(200) NOT NULL,
`gambar2` varchar(200) NOT NULL,
`gambar3` varchar(200) NOT NULL,
`dokumen` varchar(400) NOT NULL,
`link_dokumen` varchar(200) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=41 ;
-- Dumping data for table `artikel`
INSERT INTO `artikel` (`id`, `gambar`, `isi`, `enabled`, `tgl_upload`, `id_kategori`, `id_user`, `judul`, `headline`, `gambar1`, `gambar2`, `gambar3`, `dokumen`, `link_dokumen`) VALUES
(1, '1485865098', '<div class="teks" style="text-align: justify;"><div class="teks" style="text-align: justify;"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris est laborum.</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris est laborum.</p></div></div>', 1, '2017-01-31 12:18:18', 999, 61, 'Profil Desa', 0, '1485865098', '1485865098', '1485865098', '', 'Profil Desa'),
(2, '1485865119', '<div class="teks" style="text-align: justify;"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris est laborum.</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris est laborum.</p></div>', 1, '2017-01-31 12:18:39', 999, 61, 'Sejarah Desa', 0, '1485865119', '1485865119', '1485865119', '', 'Sejarah Desa'),
(3, '1485865147', '<div class="teks" style="text-align: justify;"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris est laborum.</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris est laborum.</p></div>', 1, '2017-01-31 12:19:07', 999, 61, 'Kondisi Umum Desa', 0, '1485865147', '1485865147', '1485865147', '', 'Kondisi Umum Desa'),
(4, '1485865186', '<div class="teks" style="text-align: justify;"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris est laborum.</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris est laborum.</p></div>', 1, '2017-01-31 12:19:46', 999, 61, 'Masalah & Isu Strategis Desa', 0, '1485865186', '1485865186', '1485865186', '', 'Masalah & Isu Strategis Desa'),
(5, '1485865223', '<div class="teks" style="text-align: justify;"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris est laborum.</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris est laborum.</p></div>', 1, '2017-01-31 12:20:23', 999, 61, 'Kebijakan Pembangunan Desa', 0, '1485865223', '1485865223', '1485865223', '', 'Kebijakan Pembangunan Desa'),
(6, '1485865252', '<div class="teks" style="text-align: justify;"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris est laborum.</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris est laborum.</p></div>', 1, '2017-01-31 12:20:52', 999, 61, 'Kebijakan Keuangan Desa', 0, '1485865252', '1485865252', '1485865252', '', 'Kebijakan Keuangan Desa'),
(7, '1485865283', '<div class="teks" style="text-align: justify;"><div class="teks" style="text-align: justify;"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris est laborum.</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris est laborum.</p></div></div>', 1, '2017-01-31 12:21:23', 999, 61, 'Pemerintahan Desa', 0, '1485865283', '1485865283', '1485865283', '', 'Pemerintahan Desa'),
(8, '14864630082017 02 - Contoh Foto SID 3.10 d.jpg', '<p>Profil Kepala Desa Bumi Pertiwi</p><div class="teks" style="text-align: justify;"><div class="teks" style="text-align: justify;"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris est laborum.</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris est laborum.</p></div></div>', 1, '2017-01-31 12:21:51', 999, 61, 'Kepala Desa', 0, '1485865311', '1485865311', '1485865311', '', 'Kepala Desa'),
(9, '1485865337', '<p>Sekretaris Desa:</p><p>Kaur/Kabag Keuangan:</p><p>Staf Kaur/Kabag Keuangan:</p><p>Kaur/Kabag Pemerintahan:</p><p>Staf Kaur/Kabag Pemerintahan:</p><p>Kaur/Kabag Kesejahteraan Rakyat:</p><p>Staf Kaur/Kabag Kesejahteraan Rakyat:</p><p>Kaur/Kabag Ekonomi dan Pembangunan:</p><p>Staf Kaur/Kaba Ekonomi dan Pembangunan</p><p>Kepala Dusun A:</p><p>Kepala Dusun B:</p><p>Kepala Dusun C:</p><p>Kepala Dusun D:</p>', 1, '2017-01-31 12:22:17', 999, 61, 'Perangkat Desa', 0, '1485865337', '1485865337', '1485865337', '', 'Perangkat Desa'),
(10, '1485865366', '<p>Ketua:</p><p>Wakil Ketua:</p><p>Anggota:</p><p>1.</p><p>2.</p><p>3.</p><p>4.</p><p>5.</p><p> </p>', 1, '2017-01-31 12:22:46', 999, 61, 'Badan Permusyawaratan Desa', 0, '1485865366', '1485865366', '1485865366', '', 'Badan Permusyawaratan Desa'),
(11, '1485865388', '<p>Lembaga Masyarakat Desa</p>', 1, '2017-01-31 12:23:08', 999, 61, 'Lembaga Masyarakat Desa', 0, '1485865388', '1485865388', '1485865388', '', 'Lembaga Masyarakat Desa'),
(12, '1485865408', '<div class="teks" style="text-align: justify;"><div class="teks" style="text-align: justify;"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris est laborum.</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris est laborum.</p></div></div>', 1, '2017-01-31 12:23:28', 999, 61, 'LPMD', 0, '1485865408', '1485865408', '1485865408', '', 'LPMD'),
(13, '1485865431', '<div class="teks" style="text-align: justify;"><div class="teks" style="text-align: justify;"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris est laborum.</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris est laborum.</p></div></div>', 1, '2017-01-31 12:23:51', 999, 61, 'Lembaga Adat', 0, '1485865431', '1485865431', '1485865431', '', 'Lembaga Adat'),
(14, '1485865456', '<p>Tim Penggerak PKK</p>', 1, '2017-01-31 12:24:16', 999, 61, 'TP PKK', 0, '1485865456', '1485865456', '1485865456', '', 'TP PKK'),
(15, '1485865479', '<div class="teks" style="text-align: justify;"><div class="teks" style="text-align: justify;"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris est laborum.</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris est laborum.</p></div></div>', 1, '2017-01-31 12:24:39', 999, 61, 'BUMDes', 0, '1485865479', '1485865479', '1485865479', '', 'BUMDes'),
(16, '1485865503', '<p>Ketua:</p><p>Wakil Ketua:</p><p>Sekretaris:</p><p>Bendahara:</p><p>Anggota:</p><p> </p>', 1, '2017-01-31 12:25:03', 999, 61, 'Karang Taruna', 0, '1485865503', '1485865503', '1485865503', '', 'Karang Taruna'),
(17, '1485865535', '<p>Dusun A:</p><p>Ketua RW 01:</p><p>Sekretaris RW 01:</p><p>Bendahara RW 01:</p><p>Ketua RT 01</p><p>Ketua RT 02</p><p>Ketua RT 03</p><p> </p><p>Ketua RW 02:</p><p>Sekretaris RW 02:</p><p>Bendahara RW 02:</p><p>Ketua RT 04</p><p>Ketua RT 05</p><p>Ketua RT 06</p><p> </p>', 1, '2017-01-31 12:25:35', 999, 61, 'RT/RW', 0, '1485865535', '1485865535', '1485865535', '', 'RT/RW'),
(18, '1485865556', '<p>Ketua:</p><p>Anggota:</p><p>1.</p><p>2.</p><p>3.</p><p>4.</p><p>5.</p><p> </p>', 1, '2017-01-31 12:25:56', 999, 61, 'Linmas', 0, '1485865556', '1485865556', '1485865556', '', 'Linmas'),
(19, '1485865581', '<div class="teks" style="text-align: justify;"><div class="teks" style="text-align: justify;"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris est laborum.</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris est laborum.</p></div></div>', 1, '2017-01-31 12:26:21', 999, 61, 'Lembaga Masyarakat Lainnya', 0, '1485865581', '1485865581', '1485865581', '', 'Lembaga Masyarakat Lainnya'),
(20, '1485865605', '<div class="teks" style="text-align: justify;"><p style="text-align: justify;">Halaman ini berisi tautan menuju informasi mengenai Basis Data Desa. Ada dua jenis data yang dikelola dalam sistem ini, yakni basis data kependudukan dan basis data sumber daya desa. Sila klik pada tautan berikut untuk mendapatkan tampilan data statistik per kategori.</p><ol><li style="text-align: justify;"><class="statistik/wilayah">Data Wilayah Administratif </li><li style="text-align: justify;"><class="statistik/pendidikan-dalam-kk">Data Pendidikan dalam Kartu Keluarga </li><li style="text-align: justify;"><class="statistik/pendidikan-ditempuh">Data Pendidikan sedang Ditempuh </li><li style="text-align: justify;"><class="statistik/pekerjaan">Data Pekerjaan </li><li style="text-align: justify;"><class="statistik/agama">Data Agama </li><li style="text-align: justify;"><class="statistik/jenis-kelamin">Data Jenis Kelamin</li><li style="text-align: justify;"><class="statistik/golongan-darah">Data Golongan Darah</li><li style="text-align: justify;"><class="statistik/kelompok-umur">Data Kelompok Umur </li><li style="text-align: justify;"><class="statistik/warga-negara">Data Warga Negara </li><li style="text-align: justify;"><class="statistik/status-perkawinan">Data Status Perkawinan </li><li style="text-align: justify;"><class="data_analisis">Data Analisis Sumber Daya</li></ol><p style="text-align: justify;"> </p><p style="text-align: justify;">Data yang tampil adalah statistik yang didapatkan dari proses olah data yang dilakukan oleh pemerintah desa secara rutin/harian atau berkala/per periode, baik secara <em>offline</em> maupun <em>online</em>. Sila hubungi kontak pemerintah desa jika perlu akses untuk mendapatkan data dan informasi desa yang lebih lengkap dan termutakhir.</p><p style="text-align: justify;"> </p><p style="text-align: justify;"> </p></div>', 1, '2017-01-31 12:26:45', 999, 61, 'Data Desa', 0, '1485865605', '1485865605', '1485865605', '', 'Data Desa'),
(21, '1485865659', '<p>Anda dapat menghubungi kami di:</p><p>Alamat: ......</p><p>Telepon/HP: .....</p><p>e-mail: ....</p><p> </p>', 1, '2017-01-31 12:27:39', 999, 61, 'Kontak Desa', 0, '1485865659', '1485865659', '1485865659', '', 'Kontak Desa'),
(22, '1485866915', '<p>VISI:</p><div class="teks" style="text-align: justify;"><div class="teks" style="text-align: justify;"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. </p><p> </p><p>MISI:</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris est laborum.</p></div></div>', 1, '2017-01-31 12:48:35', 999, 61, 'Visi dan Misi', 0, '1485866915', '1485866915', '1485866915', '', 'Visi dan Misi'),
(23, '14859353562017 02 - Contoh Foto SID 3.10.jpg', '<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris est laborum.</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris est laborum.</p><p> </p>', 1, '2017-02-01 07:49:16', 6, 61, 'Dokumen RPJM Desa Bumi Pertiwi 2017-2022', 0, '1485935356', '1485935356', '1485935356', '2017 02 - Contoh Lampiran SID 3.10.pdf', 'Dokumen RPJM Desa Bumi Pertiwi 2017-2022'),
(24, '14859357502017 02 - Contoh Foto SID 3.10.jpg', '<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris est laborum.</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris est laborum.</p><p> </p>', 1, '2017-02-01 07:55:50', 8, 61, 'LPJ Kepala Desa Bumi Pertiwi 2010-2016', 0, '1485935750', '1485935750', '1485935750', '2017 02 - Contoh Lampiran SID 3.10.pdf', 'LPJ Kepala Desa Bumi Pertiwi 2010-2016'),
(25, '14859362362017 02 - Contoh Foto SID 3.10 c.jpg', '<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris est laborum.</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris est laborum.</p><p> </p>', 1, '2017-02-01 08:03:57', 5, 61, 'Perdes No 15/2016 tentang Pengelolaan Pasar Desa', 0, '1485936236', '1485936236', '1485936236', '2017 02 - Contoh Lampiran SID 3.10.pdf', 'Perdes No 15/2016 tentang Pengelolaan Pasar Desa'),
(26, '14859369972017 02 - Contoh Foto SID 3.10 d.jpg', '<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris est laborum.</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris est laborum.</p>', 1, '2017-02-01 08:16:37', 19, 61, 'Objek Wisata Air Terjun Bumi Pertiwi', 0, '1485936997', '1485936997', '1485936997', '', 'Objek Wisata Air Terjun Bumi Pertiwi'),
(27, '14859370772017 02 - Contoh Foto SID 3.10 b.jpg', '<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris est laborum.</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris est laborum.</p>', 1, '2017-02-01 08:17:57', 19, 61, 'Kerajinan Pahat Batu Dusun Sabak Mendunia', 0, '1485937077', '1485937077', '1485937077', '', 'Kerajinan Pahat Batu Dusun Sabak Mendunia'),
(28, '14859371542017 02 - Contoh Foto SID 3.10.jpg', '<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris est laborum.</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris est laborum.</p>', 1, '2017-02-01 08:19:14', 1, 61, 'Pilkades Bumi Pertiwi Diikuti 7 Calon', 0, '1485937154', '1485937154', '1485937154', '', 'Pilkades Bumi Pertiwi Diikuti 7 Calon'),
(29, '14859372842017 02 - Contoh Foto SID 3.10 c.jpg', '<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris est laborum.</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris est laborum.</p>', 1, '2017-02-01 08:21:24', 1, 61, 'Kades Canangkan Program Kesehatan Rumah Tangga', 0, '1485937284', '1485937284', '1485937284', '', 'Kades Canangkan Program Kesehatan Rumah Tangga'),
(30, '1485937344', '<ol><li>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris est laborum.</li><li>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris est laborum.</li></ol>', 1, '2017-02-01 08:22:24', 1000, 61, 'Agenda Desa per Januari 2017', 0, '1485937344', '1485937344', '1485937344', '', 'Agenda Desa per Januari 2017'),
(31, '1485937404', '<ol><li>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris est laborum.</li><li>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris est laborum.</li></ol>', 1, '2017-02-01 08:23:24', 4, 61, 'Agenda Kegiatan Desa Bumi Pertiwi per Januari 2017', 0, '1485937404', '1485937404', '1485937404', '', 'Agenda Kegiatan Desa Bumi Pertiwi per Januari 2017'),
(32, '14859374622017 02 - Contoh Foto SID 3.10 b.jpg', '<ol><li>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris est laborum.</li><li>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris est laborum.</li></ol>', 1, '2017-02-01 08:24:23', 4, 61, 'Agenda Kegiatan Desa Bumi Pertiwi per Februari 2017', 0, '1485937462', '1485937462', '1485937462', '', 'Agenda Kegiatan Desa Bumi Pertiwi per Februari 2017'),
(33, '1485937843', '<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris est laborum.</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris est laborum.</p>', 1, '2017-02-01 08:30:43', 18, 61, 'Panduan Pelayanan Satu Pintu Desa Bumi Pertiwi', 0, '1485937843', '1485937843', '1485937843', '2017 02 - Contoh Lampiran SID 3.10.pdf', 'Panduan Pelayanan Satu Pintu Desa Bumi Pertiwi'),
(34, '14859379462017 02 - Contoh Foto SID 3.10.jpg', '<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris est laborum.</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris est laborum.</p>', 1, '2017-02-01 08:32:26', 1, 61, 'Presiden RI Kunjungi Desa Bumi Pertiwi', 1, '1485937946', '1485937946', '1485937946', '', 'Presiden RI Kunjungi Desa Bumi Pertiwi'),
(35, '1486320009', '<p>Selamat datang di website Desa Bumi Pertiwi.</p>', 1, '2017-02-05 18:40:09', 17, 61, 'Selamat Datang', 0, '1486320009', '1486320009', '1486320009', '', 'Selamat Datang'),
(36, '1486320072', '<p>Kantor Desa Bumi Pertiwi membuka pelayanan publik pada hari Senin - Sabtu pukul 08.00 - 15.00.</p>', 1, '2017-02-05 18:41:12', 17, 61, 'Jam Kerja Kantor Desa', 0, '1486320072', '1486320072', '1486320072', '', 'Jam Kerja Kantor Desa'),
(37, '1486462195', '<div class="teks" style="text-align: justify;"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris est laborum.</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris est laborum.</p></div>', 1, '2017-02-07 10:09:55', 5, 61, 'SK Operator SID', 0, '1486462195', '1486462195', '1486462195', '2017 02 - Contoh Lampiran SID 3.10.pdf', 'SK Operator SID'),
(38, '14864640472017 02 - Contoh Foto SID 3.10 d.jpg', '<div class="teks" style="text-align: justify;"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris est laborum.</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris est laborum.</p></div>', 1, '2017-02-07 10:40:47', 1, 61, 'Pelatihan Jurnalistik untuk Pegiat Karang Taruna', 0, '1486464047', '1486464047', '1486464047', '', 'Pelatihan Jurnalistik untuk Pegiat Karang Taruna'),
(39, '1486464155', '<div class="teks" style="text-align: justify;"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris est laborum.</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris est laborum.</p></div>', 1, '2017-02-07 10:42:35', 1, 61, 'Gotong Royong Pemugaran Masjid Desa ', 0, '1486464155', '1486464155', '1486464155', '', 'Gotong Royong Pemugaran Masjid Desa '),
(40, '14864642872017 02 - Contoh Foto SID 3.10 c.jpg', '<div class="teks" style="text-align: justify;"><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris est laborum.</p><p>Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris est laborum.</p></div>', 1, '2017-02-07 10:44:10', 1, 61, 'PKK Desa Bumi Pertiwi Raih Juara 1 Tingkat Kabupaten', 0, '1486464250', '1486464250', '1486464250', '2017 02 - Contoh Foto SID 3.10 c.jpg', 'PKK Desa Bumi Pertiwi Raih Juara 1 Tingkat Kabupaten');
-- `config`
CREATE TABLE IF NOT EXISTS `config` (
`id` int(5) NOT NULL AUTO_INCREMENT,
`nama_desa` varchar(100) NOT NULL,
`kode_desa` varchar(100) NOT NULL,
`nama_kepala_desa` varchar(100) NOT NULL,
`nip_kepala_desa` varchar(100) NOT NULL,
`kode_pos` varchar(6) NOT NULL,
`nama_kecamatan` varchar(100) NOT NULL,
`kode_kecamatan` varchar(100) NOT NULL,
`nama_kepala_camat` varchar(100) NOT NULL,
`nip_kepala_camat` varchar(100) NOT NULL,
`nama_kabupaten` varchar(100) NOT NULL,
`kode_kabupaten` varchar(100) NOT NULL,
`nama_propinsi` varchar(100) NOT NULL,
`kode_propinsi` varchar(100) NOT NULL,
`logo` varchar(100) NOT NULL,
`lat` varchar(20) NOT NULL,
`lng` varchar(20) NOT NULL,
`zoom` tinyint(4) NOT NULL,
`map_tipe` varchar(20) NOT NULL,
`path` text NOT NULL,
`alamat_kantor` varchar(200) DEFAULT NULL,
`g_analytic` varchar(200) NOT NULL,
`regid` varchar(60) NOT NULL,
`macid` varchar(60) NOT NULL,
`email_desa` varchar(100) NOT NULL,
`gapi_key` varchar(100) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;
-- Dumping data for table `config`
INSERT INTO `config` (`id`, `nama_desa`, `kode_desa`, `nama_kepala_desa`, `nip_kepala_desa`, `kode_pos`, `nama_kecamatan`, `kode_kecamatan`, `nama_kepala_camat`, `nip_kepala_camat`, `nama_kabupaten`, `kode_kabupaten`, `nama_propinsi`, `kode_propinsi`, `logo`, `lat`, `lng`, `zoom`, `map_tipe`, `path`, `alamat_kantor`, `g_analytic`, `regid`, `macid`, `email_desa`, `gapi_key`) VALUES
(1, 'Bumi Pertiwi', '07', 'Jarwo', '--', '53482', 'Nusantara', '08', 'Sukirman', '23425525025', 'Sejahtera', '03', 'Banjar Raya', '34', 'logo-kab.png', '-7.817710559245467', '110.24645910630034', 11, 'roadmap', '(-7.79565213709092, 110.28864670079201);(-7.835787886919521, 110.27628708165139);(-7.902445488180415, 110.3428916959092);(-7.914007448532148, 110.39645004551858);(-7.805176223404801, 110.36623764317483);(-7.797012734126373, 110.32435226719826);', 'Jl. Tengah Raya Tinggi No. 77', '', '', '', '', 'AIzaSyDI70EOSFvckxwK-ZGUONYJ6nUJBFf9f7g');
-- `data_persil`
CREATE TABLE IF NOT EXISTS `data_persil` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`nik` varchar(64) NOT NULL,
`nama` varchar(128) NOT NULL COMMENT 'nomer persil',
`persil_jenis_id` tinyint(2) NOT NULL,
`id_clusterdesa` varchar(64) NOT NULL,
`alamat_ext` varchar(64) NOT NULL,
`luas` decimal(7,2) NOT NULL,
`kelas` varchar(128) DEFAULT NULL,
`peta` text,
`no_sppt_pbb` varchar(128) NOT NULL,
`persil_peruntukan_id` tinyint(2) NOT NULL,
`rdate` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`userID` int(11) NOT NULL,
PRIMARY KEY (`id`),
KEY `nik` (`nik`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- `data_persil_jenis`
CREATE TABLE IF NOT EXISTS `data_persil_jenis` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`nama` varchar(128) NOT NULL,
`ndesc` text NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=6 ;
-- Dumping data for table `data_persil_jenis`
INSERT INTO `data_persil_jenis` (`id`, `nama`, `ndesc`) VALUES
(1, 'Leter C', 'Untuk tanah yang memiliki surat minim itu biasanya berupa leter C. Letter C ini diperoleh dari kantor desa dimana tanah itu berada, letter C ini merupakan tanda bukti berupa catatan yang berada di Kantor Desa atau Kelurahan.'),
(2, 'Leter D', 'Leter D adalah'),
(4, 'SHM', 'Sertifikat Hak Milik adalah bl ab a'),
(5, 'HGB', 'Hak Guna Bangunan adalah');
-- `data_persil_log`
CREATE TABLE IF NOT EXISTS `data_persil_log` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`persil_id` int(11) NOT NULL,
`persil_transaksi_jenis` tinyint(2) NOT NULL,
`pemilik_lama` varchar(24) NOT NULL,
`pemilik_baru` varchar(24) NOT NULL,
`rdate` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`user_id` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='Tabel untuk menyimpan catatan transaksi atas data persil' AUTO_INCREMENT=1 ;
-- `data_persil_peruntukan`
CREATE TABLE IF NOT EXISTS `data_persil_peruntukan` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`nama` varchar(128) NOT NULL,
`ndesc` text NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=4 ;
-- Dumping data for table `data_persil_peruntukan`
INSERT INTO `data_persil_peruntukan` (`id`, `nama`, `ndesc`) VALUES
(1, 'Sawah', 'Sawah'),
(2, 'Pekarangan', 'Pekarangan'),
(3, 'Perumahan', 'Perumahan');
-- `detail_log_penduduk`
CREATE TABLE IF NOT EXISTS `detail_log_penduduk` (
`id` int(10) NOT NULL,
`nama` varchar(50) NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- `dokumen`
CREATE TABLE IF NOT EXISTS `dokumen` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`id_pend` int(11) NOT NULL DEFAULT '0',
`satuan` varchar(200) NOT NULL,
`nama` varchar(50) NOT NULL,
`enabled` int(2) NOT NULL DEFAULT '1',
`tgl_upload` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- `gambar_gallery`
CREATE TABLE IF NOT EXISTS `gambar_gallery` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`parrent` int(4) NOT NULL,
`gambar` varchar(200) NOT NULL,
`nama` varchar(50) NOT NULL,
`enabled` int(2) NOT NULL DEFAULT '1',
`tgl_upload` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`tipe` int(4) NOT NULL,
PRIMARY KEY (`id`),
KEY `parrent` (`parrent`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=7 ;
-- Dumping data for table `gambar_gallery`
INSERT INTO `gambar_gallery` (`id`, `parrent`, `gambar`, `nama`, `enabled`, `tgl_upload`, `tipe`) VALUES
(1, 0, '2017 02 - Contoh Foto SID 3.10 c.jpg', 'Contoh Album 1', 1, '2017-02-05 18:20:55', 0),
(2, 1, '2017 02 - Contoh Foto SID 3.10 b.jpg', 'Desa 1', 1, '2017-02-05 18:21:20', 2),
(3, 0, '2017 02 - Contoh Foto SID 3.10 d.jpg', 'Contoh Album 2', 1, '2017-02-05 18:37:03', 0),
(4, 1, '2017 02 - Contoh Foto SID 3.10 d.jpg', 'Desa 2', 1, '2017-02-05 18:37:28', 2),
(5, 3, '2017 02 - Contoh Foto SID 3.10 c.jpg', 'Tani 1', 1, '2017-02-05 18:37:56', 2),
(6, 3, '2017 02 - Contoh Foto SID 3.10.jpg', 'Tani 2', 1, '2017-02-05 18:38:12', 2);
-- `garis`
CREATE TABLE IF NOT EXISTS `garis` (
`id` int(4) NOT NULL AUTO_INCREMENT,
`nama` varchar(50) NOT NULL,
`path` text NOT NULL,
`enabled` int(11) NOT NULL DEFAULT '1',
`ref_line` int(9) NOT NULL,
`foto` varchar(100) NOT NULL,
`desk` text NOT NULL,
`id_cluster` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- `gis_simbol`
CREATE TABLE IF NOT EXISTS `gis_simbol` (
`simbol` varchar(40) DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
-- Dumping data for table `gis_simbol`
INSERT INTO `gis_simbol` (`simbol`) VALUES
('accident.png'),
('accident_2.png'),
('administration.png'),
('administration_2.png'),
('aestheticscenter.png'),
('agriculture.png'),
('agriculture2.png'),
('agriculture3.png'),
('agriculture4.png'),
('aircraft-small.png'),
('airplane-sport.png'),
('airplane-tourism.png'),
('airport-apron.png'),
('airport-runway.png'),
('airport-terminal.png'),
('airport.png'),
('airport_2.png'),
('amphitheater-tourism.png'),
('amphitheater.png'),
('ancientmonument.png'),
('ancienttemple.png'),
('ancienttempleruin.png'),
('animals.png'),
('animals_2.png'),
('anniversary.png'),
('apartment.png'),
('apartment_2.png'),
('aquarium.png'),
('arch.png'),
('archery.png'),
('artgallery.png'),
('atm.png'),
('atv.png'),
('audio.png'),
('australianfootball.png'),
('bags.png'),
('bank.png'),
('bank_2.png'),
('bankeuro.png'),
('bankpound.png'),
('bar.png'),
('bar_2.png'),
('baseball.png'),
('basketball.png'),
('baskteball2.png'),
('beach.png'),
('beach_2.png'),
('beautiful.png'),
('beautiful_2.png'),
('bench.png'),
('biblio.png'),
('bicycleparking.png'),
('bigcity.png'),
('billiard.png'),
('bobsleigh.png'),
('bomb.png'),
('bookstore.png'),
('bowling.png'),
('bowling_2.png'),
('boxing.png'),
('bread.png'),
('bread_2.png'),
('bridge.png'),
('bridgemodern.png'),
('bullfight.png'),
('bungalow.png'),
('bus.png'),
('bus_2.png'),
('butcher.png'),
('cabin.png'),
('cablecar.png'),
('camping.png'),
('camping_2.png'),
('campingsite.png'),
('canoe.png'),
('car.png'),
('car_2.png'),
('carrental.png'),
('carrepair.png'),
('carrepair_2.png'),
('carwash.png'),
('casino.png'),
('casino_2.png'),
('castle.png'),
('cathedral.png'),
('cathedral2.png'),
('cave.png'),
('cemetary.png'),
('chapel.png'),
('church.png'),
('church2.png'),
('church_2.png'),
('cinema.png'),
('cinema_2.png'),
('circus.png'),
('citysquare.png'),
('climbing.png'),
('clothes-female.png'),
('clothes-male.png'),
('clothes.png'),
('clothes_2.png'),
('clouds.png'),
('clouds_2.png'),
('cloudsun.png'),
('cloudsun_2.png'),
('club.png'),
('club_2.png'),
('cluster.png'),
('cluster2.png'),
('cluster3.png'),
('cluster4.png'),
('cluster5.png'),
('cocktail.png'),
('coffee.png'),
('coffee_2.png'),
('communitycentre.png'),
('company.png'),
('company_2.png'),
('computer.png'),
('computer_2.png'),
('concessionaire.png'),
('conference.png'),
('construction.png'),
('convenience.png'),
('convent.png'),
('corral.png'),
('country.png'),
('court.png'),
('cricket.png'),
('cross.png'),
('crossingguard.png'),
('cruise.png'),
('currencyexchange.png'),
('customs.png'),
('cycling.png'),
('cycling_2.png'),
('cyclingfeedarea.png'),
('cyclingmountain1.png'),
('cyclingmountain2.png'),
('cyclingmountain3.png'),
('cyclingmountain4.png'),
('cyclingmountainnotrated.png'),
('cyclingsport.png'),
('cyclingsprint.png'),
('cyclinguncategorized.png'),
('dam.png'),
('dancinghall.png'),
('dates.png'),
('dates_2.png'),
('daycare.png'),
('days-dim.png'),
('days-dom.png'),
('days-jeu.png'),
('days-jue.png'),
('days-lun.png'),
('days-mar.png'),
('days-mer.png'),
('days-mie.png'),
('days-qua.png'),
('days-qui.png'),
('days-sab.png'),
('days-sam.png'),
('days-seg.png'),
('days-sex.png'),
('days-ter.png'),
('days-ven.png'),
('days-vie.png'),
('dentist.png'),
('deptstore.png'),
('disability.png'),
('disability_2.png'),
('disabledparking.png'),
('diving.png'),
('doctor.png'),
('doctor_2.png'),
('dog-leash.png'),
('dog-offleash.png'),
('door.png'),
('down.png'),
('downleft.png'),
('downright.png'),
('downthenleft.png'),
('downthenright.png'),
('drinkingfountain.png'),
('drinkingwater.png'),
('drugs.png'),
('drugs_2.png'),
('elevator.png'),
('embassy.png'),
('entrance.png'),
('escalator-down.png'),
('escalator-up.png'),
('exit.png'),
('expert.png'),
('explosion.png'),
('factory.png'),
('factory_2.png'),
('fallingrocks.png'),
('family.png'),
('farm.png'),
('farm_2.png'),
('fastfood.png'),
('fastfood_2.png'),
('festival-itinerant.png'),
('festival.png'),
('findajob.png'),
('findjob.png'),
('findjob_2.png'),
('fire-extinguisher.png'),
('fire.png'),
('firemen.png'),
('firemen_2.png'),
('fireworks.png'),
('firstaid.png'),
('fishing.png'),
('fishing_2.png'),
('fishingshop.png'),
('fitnesscenter.png'),
('fjord.png'),
('flood.png'),
('flowers.png'),
('flowers_2.png'),
('followpath.png'),
('foodtruck.png'),
('forest.png'),
('fortress.png'),
('fossils.png'),
('fountain.png'),
('friday.png'),
('friday_2.png'),
('friends.png'),
('friends_2.png'),
('garden.png'),
('gateswalls.png'),
('gazstation.png'),
('gazstation_2.png'),
('geyser.png'),
('gifts.png'),
('girlfriend.png'),
('girlfriend_2.png'),
('glacier.png'),
('golf.png'),
('golf_2.png'),
('gondola.png'),
('gourmet.png'),
('grocery.png'),
('gun.png'),
('gym.png'),
('hairsalon.png'),
('handball.png'),
('hanggliding.png'),
('hats.png'),
('headstone.png'),
('headstonejewish.png'),
('helicopter.png'),
('highway.png'),
('highway_2.png'),
('hiking-tourism.png'),
('hiking.png'),
('hiking_2.png'),
('historicalquarter.png'),
('home.png'),
('home_2.png'),
('horseriding.png'),
('horseriding_2.png'),
('hospital.png'),
('hospital_2.png'),
('hostel.png'),
('hotairballoon.png'),
('hotel.png'),
('hotel1star.png'),
('hotel2stars.png'),
('hotel3stars.png'),
('hotel4stars.png'),
('hotel5stars.png'),
('hotel_2.png'),
('house.png'),
('hunting.png'),
('icecream.png'),
('icehockey.png'),
('iceskating.png'),
('im-user.png'),
('info.png'),
('info_2.png'),
('jewelry.png'),
('jewishquarter.png'),
('jogging.png'),
('judo.png'),
('justice.png'),
('justice_2.png'),
('karate.png'),
('karting.png'),
('kayak.png'),
('laboratory.png'),
('lake.png'),
('laundromat.png'),
('left.png'),
('leftthendown.png'),
('leftthenup.png'),
('library.png'),
('library_2.png'),
('lighthouse.png'),
('liquor.png'),
('lock.png'),
('lockerrental.png'),
('magicshow.png'),
('mainroad.png'),
('massage.png'),
('military.png'),
('military_2.png'),
('mine.png'),
('mobilephonetower.png'),
('modernmonument.png'),
('moderntower.png'),
('monastery.png'),
('monday.png'),
('monday_2.png'),
('monument.png'),
('mosque.png'),
('motorbike.png'),
('motorcycle.png'),
('movierental.png'),
('museum-archeological.png'),
('museum-art.png'),
('museum-crafts.png'),
('museum-historical.png'),
('museum-naval.png'),
('museum-science.png'),
('museum-war.png'),
('museum.png'),
('museum_2.png'),
('music-classical.png'),
('music-hiphop.png'),
('music-live.png'),
('music-rock.png'),
('music.png'),
('music_2.png'),
('nanny.png'),
('newsagent.png'),
('nordicski.png'),
('nursery.png'),
('observatory.png'),
('oilpumpjack.png'),
('olympicsite.png'),
('ophthalmologist.png'),
('pagoda.png'),
('paint.png'),
('palace.png'),
('panoramic.png'),
('panoramic180.png'),
('park-urban.png'),
('park.png'),
('park_2.png'),
('parkandride.png'),
('parking.png'),
('parking_2.png'),
('party.png'),
('patisserie.png'),
('pedestriancrossing.png'),
('pend.png'),
('pens.png'),
('perfumery.png'),
('personal.png'),
('personalwatercraft.png'),
('petroglyphs.png'),
('pets.png'),
('phones.png'),
('photo.png'),
('photodown.png'),
('photodownleft.png'),
('photodownright.png'),
('photography.png'),
('photoleft.png'),
('photoright.png'),
('photoup.png'),
('photoupleft.png'),
('photoupright.png'),
('picnic.png'),
('pizza.png'),
('pizza_2.png'),
('places-unvisited.png'),
('places-visited.png'),
('planecrash.png'),
('playground.png'),
('playground_2.png'),
('poker.png'),
('poker_2.png'),
('police.png'),
('police2.png'),
('police_2.png'),
('pool-indoor.png'),
('pool.png'),
('pool_2.png'),
('port.png'),
('port_2.png'),
('postal.png'),
('postal_2.png'),
('powerlinepole.png'),
('powerplant.png'),
('powersubstation.png'),
('prison.png'),
('publicart.png'),
('racing.png'),
('radiation.png'),
('rain_2.png'),
('rain_3.png'),
('rattlesnake.png'),
('realestate.png'),
('realestate_2.png'),
('recycle.png'),
('recycle_2.png'),
('recycle_3.png'),
('regroup.png'),
('regulier.png'),
('resort.png'),
('restaurant-barbecue.png'),
('restaurant-buffet.png'),
('restaurant-fish.png'),
('restaurant-romantic.png'),
('restaurant.png'),
('restaurant_2.png'),
('restaurantafrican.png'),
('restaurantchinese.png'),
('restaurantchinese_2.png'),
('restaurantfishchips.png'),
('restaurantgourmet.png'),
('restaurantgreek.png'),
('restaurantindian.png'),
('restaurantitalian.png'),
('restaurantjapanese.png'),
('restaurantjapanese_2.png'),
('restaurantkebab.png'),
('restaurantkorean.png'),
('restaurantmediterranean.png'),
('restaurantmexican.png'),
('restaurantthai.png'),
('restaurantturkish.png'),
('revolution.png'),
('right.png'),
('rightthendown.png'),
('rightthenup.png'),
('riparian.png'),
('ropescourse.png'),
('rowboat.png'),
('rugby.png'),
('ruins.png'),
('sailboat-sport.png'),
('sailboat-tourism.png'),
('sailboat.png'),
('salle-fete.png'),
('satursday.png'),
('satursday_2.png'),
('sauna.png'),
('school.png'),
('school_2.png'),
('schrink.png'),
('schrink_2.png'),
('sciencecenter.png'),
('seals.png'),
('seniorsite.png'),
('shadow.png'),
('shelter-picnic.png'),
('shelter-sleeping.png'),
('shoes.png'),
('shoes_2.png'),
('shoppingmall.png'),
('shore.png'),
('shower.png'),
('sight.png'),
('skateboarding.png'),
('skiing.png'),
('skiing_2.png'),
('skijump.png'),
('skilift.png'),
('smallcity.png'),
('smokingarea.png'),
('sneakers.png'),
('snow.png'),
('snowboarding.png'),
('snowmobiling.png'),
('snowshoeing.png'),
('soccer.png'),
('soccer2.png'),
('soccer_2.png'),
('spaceport.png'),
('spectacle.png'),
('speed20.png'),
('speed30.png'),
('speed40.png'),
('speed50.png'),
('speed60.png'),
('speed70.png'),
('speed80.png'),
('speed90.png'),
('speed100.png'),
('speed110.png'),
('speed120.png'),
('speed130.png'),
('speedhump.png'),
('spelunking.png'),
('stadium.png'),
('statue.png'),
('steamtrain.png'),
('stop.png'),
('stoplight.png'),
('stoplight_2.png'),
('strike.png'),
('strike1.png'),
('subway.png'),
('sun.png'),
('sun_2.png'),
('sunday.png'),
('sunday_2.png'),
('supermarket.png'),
('supermarket_2.png'),
('surfing.png'),
('suv.png'),
('synagogue.png'),
('tailor.png'),
('tapas.png'),
('taxi.png'),
('taxi_2.png'),
('taxiway.png'),
('teahouse.png'),
('telephone.png'),
('templehindu.png'),
('tennis.png'),
('tennis2.png'),
('tennis_2.png'),
('tent.png'),
('terrace.png'),
('text.png'),
('textiles.png'),
('theater.png'),
('theater_2.png'),
('themepark.png'),
('thunder.png'),
('thunder_2.png'),
('thursday.png'),
('thursday_2.png'),
('toilets.png'),
('toilets_2.png'),
('tollstation.png'),
('tools.png'),
('tower.png'),
('toys.png'),
('toys_2.png'),
('trafficenforcementcamera.png'),
('train.png'),
('train_2.png'),
('tram.png'),
('trash.png'),
('truck.png'),
('truck_2.png'),
('tuesday.png'),
('tuesday_2.png'),
('tunnel.png'),
('turnleft.png'),
('turnright.png'),
('university.png'),
('university_2.png'),
('up.png'),
('upleft.png'),
('upright.png'),
('upthenleft.png'),
('upthenright.png'),
('usfootball.png'),
('vespa.png'),
('vet.png'),
('video.png'),
('videogames.png'),
('videogames_2.png'),
('villa.png'),
('waitingroom.png'),
('water.png'),
('waterfall.png'),
('watermill.png'),
('waterpark.png'),
('waterskiing.png'),
('watertower.png'),
('waterwell.png'),
('waterwellpump.png'),
('wedding.png'),
('wednesday.png'),
('wednesday_2.png'),
('wetland.png'),
('white1.png'),
('white20.png'),
('wifi.png'),
('wifi_2.png'),
('windmill.png'),
('windsurfing.png'),
('windturbine.png'),
('winery.png'),
('wineyard.png'),
('workoffice.png'),
('world.png'),
('worldheritagesite.png'),
('yoga.png'),
('youthhostel.png'),
('zipline.png'),
('zoo.png'),
('zoo_2.png');
-- `inbox`
CREATE TABLE IF NOT EXISTS `inbox` (
`UpdatedInDB` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`ReceivingDateTime` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
`Text` text NOT NULL,
`SenderNumber` varchar(20) NOT NULL DEFAULT '',
`Coding` enum('Default_No_Compression','Unicode_No_Compression','8bit','Default_Compression','Unicode_Compression') NOT NULL DEFAULT 'Default_No_Compression',
`UDH` text NOT NULL,
`SMSCNumber` varchar(20) NOT NULL DEFAULT '',
`Class` int(11) NOT NULL DEFAULT '-1',
`TextDecoded` text NOT NULL,
`ID` int(10) unsigned NOT NULL AUTO_INCREMENT,
`RecipientID` text NOT NULL,
`Processed` enum('false','true') NOT NULL DEFAULT 'false',
PRIMARY KEY (`ID`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
-- `kategori`
CREATE TABLE IF NOT EXISTS `kategori` (
`id` int(5) NOT NULL AUTO_INCREMENT,
`kategori` varchar(100) NOT NULL,
`tipe` int(4) NOT NULL DEFAULT '1',
`urut` tinyint(4) NOT NULL,
`enabled` tinyint(4) NOT NULL,
`parrent` tinyint(4) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=20 ;
-- Dumping data for table `kategori`
INSERT INTO `kategori` (`id`, `kategori`, `tipe`, `urut`, `enabled`, `parrent`) VALUES
(1, 'Berita ', 1, 1, 1, 0),
(4, 'Agenda ', 2, 2, 1, 0),
(5, 'Produk Hukum', 2, 5, 1, 0),
(6, 'Perencanaan & Penganggaran', 2, 6, 1, 0),
(8, 'Laporan', 2, 3, 1, 0),
(18, 'Panduan Layanan Publik', 1, 0, 1, 0),
(17, 'teks_berjalan', 1, 0, 1, 0),
(19, 'Potensi & Produk Usaha', 1, 0, 1, 0);
-- `kelompok`
CREATE TABLE IF NOT EXISTS `kelompok` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`id_master` int(11) NOT NULL,
`id_ketua` int(11) NOT NULL,