-- phpMyAdmin SQL Dump -- version 4.5.1 -- http://www.phpmyadmin.net -- -- Host: 127.0.0.1 -- Generation Time: Nov 26, 2016 at 10:01 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: `dbmvc` -- -- -------------------------------------------------------- -- -- Table structure for table `identity` -- CREATE TABLE `identity` ( `id` int(10) UNSIGNED NOT NULL, `image` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `fullnames` 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, `cellar` 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 `identity` -- INSERT INTO `identity` (`id`, `image`, `fullnames`, `sex`, `idcard`, `birthdate`, `province`, `district`, `sector`, `cellar`, `created_at`, `updated_at`) VALUES (10, 'cantik.png', 'Michelle Chen', 'Female', '1313134', '30/09/1995', 'Sumatera Utara', 'Medan', 'Pringgan', 'Mekarsari', '2016-11-26 00:57:45', '2016-11-26 01:19:03'), (12, 'IMG_0181.JPG', 'Martha Tampubolon', 'Female', '128491', '22/01/1997', 'Sumatera Utara', 'Pematang Siantar', 'Parluasan', 'Simpang 2', '2016-11-26 01:21:05', '2016-11-26 01:21:05'), (13, 'IMG_0183.JPG', 'Amrianto Saragih', 'Male', '246972', '15/02/1996', 'Sumatera Utara', 'Medan', 'Amplas', 'Simpang 2', '2016-11-26 01:22:49', '2016-11-26 01:23:37'), (14, 'IMG_0434.JPG', 'Josua Rumahorbo', 'Male', '8247392', '31/01/1995', 'Sumatera Utara', 'Labuhan Batu', 'Sunggal', 'Tenggara', '2016-11-26 01:24:49', '2016-11-26 01:24:49'); -- -------------------------------------------------------- -- -- 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_23_150704_identity', 1); -- -- Indexes for dumped tables -- -- -- Indexes for table `identity` -- ALTER TABLE `identity` ADD PRIMARY KEY (`id`); -- -- Indexes for table `migrations` -- ALTER TABLE `migrations` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `identity` -- ALTER TABLE `identity` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=15; -- -- AUTO_INCREMENT for table `migrations` -- ALTER TABLE `migrations` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; /*!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 */;