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
-- phpMyAdmin SQL Dump
-- version 4.5.1
-- http://www.phpmyadmin.net
--
-- Host: 127.0.0.1
-- Generation Time: Nov 26, 2016 at 09:34 AM
-- Server version: 10.1.16-MariaDB
-- PHP Version: 7.0.9
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 utf8mb4 */;
--
-- Database: `mvc_laravel`
--
-- --------------------------------------------------------
--
-- Table structure for table `migrations`
--
CREATE TABLE `migrations` (
`id` int(10) UNSIGNED NOT NULL,
`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` (`id`, `migration`, `batch`) VALUES
(1, '2016_11_22_013619_profile', 1);
-- --------------------------------------------------------
--
-- Table structure for table `profile`
--
CREATE TABLE `profile` (
`id` int(10) UNSIGNED NOT NULL,
`image` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`name` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`sex` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`idcard` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`birthdate` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`province` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`district` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`sector` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Dumping data for table `profile`
--
INSERT INTO `profile` (`id`, `image`, `name`, `sex`, `idcard`, `birthdate`, `province`, `district`, `sector`, `created_at`, `updated_at`) VALUES
(7, 'DSC_0063.JPG', 'Yan Rega Panjaitan', 'Male', '1', '08/02/1997', 'Sumatra Utara', 'Toba Samosir', 'Nicekali', '2016-11-26 00:13:10', '2016-11-26 00:13:10'),
(8, 'DSC_0270.JPG', 'Monika Harahap', 'Female', '2', '07/07/1996', 'Sumatra Utara', 'Toba Samosir', 'Nicekali', '2016-11-26 00:27:55', '2016-11-26 01:20:18'),
(9, 'DSC_0333.JPG', 'Ruth Hutauruk', 'Female', '3', '03/06/1996', 'Sumatra Utara', 'Toba Samosir', 'Nicekali', '2016-11-26 00:29:25', '2016-11-26 00:29:25'),
(10, 'DSC_0731.JPG', 'Cindy Fransiska Simarmata', 'Female', '4', '03/10/1996', 'Sumatra Utara', 'Toba Samosir', 'Nicekali', '2016-11-26 00:30:15', '2016-11-26 00:30:15'),
(11, 'lainnya.jpg', 'Lainnya', 'Male', '7', '08/11/2016', 'DKI Jakarta', 'asdsadq1e', 'jasdhh', '2016-11-26 00:44:28', '2016-11-26 01:17:01'),
(13, 'lainnya.jpg', 'hdasdad', 'Male', '123', '15/11/2016', 'Jawa Timur', 'dasdas', 'kkadnad', '2016-11-26 01:15:59', '2016-11-26 01:20:56');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `migrations`
--
ALTER TABLE `migrations`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `profile`
--
ALTER TABLE `profile`
ADD PRIMARY KEY (`id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `migrations`
--
ALTER TABLE `migrations`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `profile`
--
ALTER TABLE `profile`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=14;
/*!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 */;