mvc_laravel.sql 3.55 KB
-- 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 */;