-
Notifications
You must be signed in to change notification settings - Fork 0
/
ydbks.sql
126 lines (98 loc) · 3.97 KB
/
ydbks.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
-- phpMyAdmin SQL Dump
-- version 4.1.12
-- http://www.phpmyadmin.net
--
-- Host: 127.0.0.1
-- Generation Time: Jan 12, 2018 at 08:45 AM
-- Server version: 5.5.36
-- PHP Version: 5.4.27
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: `ydbks`
--
-- --------------------------------------------------------
--
-- Table structure for table `artikel`
--
CREATE TABLE IF NOT EXISTS `artikel` (
`id_artikel` int(11) NOT NULL AUTO_INCREMENT,
`judul` text NOT NULL,
`isi` text NOT NULL,
`penulis` varchar(30) NOT NULL,
`tanggal` datetime NOT NULL,
`status` enum('terbit','draft') NOT NULL,
PRIMARY KEY (`id_artikel`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `galery`
--
CREATE TABLE IF NOT EXISTS `galery` (
`id_galery` int(11) NOT NULL AUTO_INCREMENT,
`id_foreign` int(11) NOT NULL,
`caption` text NOT NULL,
`foto` text NOT NULL,
PRIMARY KEY (`id_galery`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `kegiatan`
--
CREATE TABLE IF NOT EXISTS `kegiatan` (
`id_kegiatan` int(11) NOT NULL,
`nama_kegiatan` int(11) NOT NULL,
`deskripsi` int(11) NOT NULL,
`tanggal` int(11) NOT NULL,
`status` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `pengurus`
--
CREATE TABLE IF NOT EXISTS `pengurus` (
`id_pengurus` int(11) NOT NULL AUTO_INCREMENT,
`nama` varchar(40) NOT NULL,
`jabatan` text NOT NULL,
PRIMARY KEY (`id_pengurus`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `proker`
--
CREATE TABLE IF NOT EXISTS `proker` (
`id_proker` int(11) NOT NULL AUTO_INCREMENT,
`bidang` text NOT NULL,
`proker` text NOT NULL,
PRIMARY KEY (`id_proker`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `sejarah`
--
CREATE TABLE IF NOT EXISTS `sejarah` (
`tahun` year(4) NOT NULL,
`sejarah` text NOT NULL,
PRIMARY KEY (`tahun`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `sejarah`
--
INSERT INTO `sejarah` (`tahun`, `sejarah`) VALUES
(1978, '<p> <span style="font-family: Questrial;"> </span><span lang="IT" style="font-size:12.0pt;font-family:\r\n" arial","sans-serif";mso-fareast-font-family:"times="" new="" roman";mso-ansi-language:="" it;mso-fareast-language:en-us;mso-bidi-language:ar-sa"=""><span style="font-family: Questrial;">Pada tahun <b>1978</b> di\r\nBengkulu telah berdiri Badan Koordinasi Kegiatan Sosial (BKKS) Propinsi\r\nBengkulu, dengan Akte Notaris Nawawi Bengkulu No 9 tanggal 8 Agustus 1978 yang\r\ndipimpin oleh </span><span style="font-family: Questrial;">Ibu Hj Hindun Maurice.\r\nBKKS bertanggung jawab kepada DNIKS (Dewan</span><span style="font-family: Questrial;"> \r\n</span><span style="font-family: Questrial;">Nasional untuk Kesejahteraan Sosial) di Jakarta dan Pemerintah Daerah Tk\r\nI Bengkulu.</span></span><br></p>');
-- --------------------------------------------------------
--
-- Table structure for table `visi`
--
CREATE TABLE IF NOT EXISTS `visi` (
`id_visi` int(11) NOT NULL AUTO_INCREMENT,
`visi` text NOT NULL,
PRIMARY KEY (`id_visi`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;