Commit 666ced87 by Rohani Napitupulu

Ini database yang digunakan.

parent 6d901adb
/*
SQLyog Community v12.2.1 (64 bit)
MySQL - 10.1.16-MariaDB : Database - dbmvc
*********************************************************************
*/
/*!40101 SET NAMES utf8 */;
/*!40101 SET SQL_MODE=''*/;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
CREATE DATABASE /*!32312 IF NOT EXISTS*/`dbmvc` /*!40100 DEFAULT CHARACTER SET latin1 */;
USE `dbmvc`;
/*Table structure for table `identity` */
DROP TABLE IF EXISTS `identity`;
CREATE TABLE `identity` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`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,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*Data for the table `identity` */
insert into `identity`(`id`,`image`,`fullnames`,`sex`,`idcard`,`birthdate`,`province`,`district`,`sector`,`cellar`,`created_at`,`updated_at`) values
(3,'fujiTampan.png','Fujiatma Pratama Napitupulu','Male','12S14003','29/03/1996','Sumatera Utara','IV Toba','Habinsaran','Parsoburan Tengah','2016-11-25 01:17:58','2016-11-25 03:17:00'),
(4,'1.png','Ramosan Krisnel Lubis','Male','12S14001','28/04/1996','Sumut','V Toba','Pahae','Garoga','2016-11-25 01:19:11','2016-11-25 01:44:25'),
(5,'2.png','Ricky Andika Panjaitan','Male','12S14002','11/01/1996','Sumatera Utara','VI Toba','Laguboti','Ponot','2016-11-25 01:21:07','2016-11-25 01:21:07'),
(7,'22.png','Rohani Napitupulu','Female','12S14022','11/12/1996','Sumatera Utara','Teladan','Teladan','Tempe','2016-11-25 08:20:19','2016-11-25 08:20:19'),
(8,'4.png','Nur Shanthy Sirait','Female','12S14004','11/11/1996','Sumatera Utara','IV Toba','Narumonda','Narumonda','2016-11-25 08:24:46','2016-11-25 08:24:46'),
(9,'5.png','Erwin Sihotang','Male','12S14005','07/11/1996','Sumatera Utara','IV Toba','Pahae','Pangururan','2016-11-25 08:25:49','2016-11-25 08:25:49');
/*Table structure for table `migrations` */
DROP TABLE IF EXISTS `migrations`;
CREATE TABLE `migrations` (
`id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`migration` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`batch` int(11) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
/*Data for the table `migrations` */
insert into `migrations`(`id`,`migration`,`batch`) values
(1,'2016_11_23_150704_identity',1);
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment