Enhancement: Complete overhaul of SIDAK application
- Report: Added printable reports for all categories. - Dashboard: Fixed broken links and implemented gender balance filtering. - Logic: Auto-integration of Arrivals and Births into Resident/KK data. - Fix: Solved deletion popup bug in Birth Data. - Feature: Added Full KK History view. - Feature: Implemented Dynamic Village Profile for letter templates.
This commit is contained in:
12
create_profil.sql
Normal file
12
create_profil.sql
Normal file
@@ -0,0 +1,12 @@
|
||||
CREATE TABLE `tb_profil` (
|
||||
`id_profil` int(11) NOT NULL PRIMARY KEY,
|
||||
`nama_desa` varchar(50) NOT NULL,
|
||||
`alamat` text NOT NULL,
|
||||
`kecamatan` varchar(50) NOT NULL,
|
||||
`kabupaten` varchar(50) NOT NULL,
|
||||
`provinsi` varchar(50) NOT NULL,
|
||||
`kepala_desa` varchar(50) NOT NULL,
|
||||
`nip_kades` varchar(30) NOT NULL
|
||||
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
||||
|
||||
INSERT INTO `tb_profil` VALUES (1, 'Desa Percontohan', 'Jl. Contoh No. 1', 'Kecamatan Contoh', 'Kabupaten Contoh', 'Jawa Barat', 'Budi Santoso', '123456789');
|
||||
Reference in New Issue
Block a user