X Tutup
/* Navicat Premium Data Transfer Source Server : localhost_3306 Source Server Type : MySQL Source Server Version : 80017 Source Host : localhost:3306 Source Schema : apijson Target Server Type : MySQL Target Server Version : 80017 File Encoding : 65001 Date: 03/09/2019 13:08:54 */ SET NAMES utf8mb4; SET FOREIGN_KEY_CHECKS = 0; -- ---------------------------- -- Table structure for comment -- ---------------------------- DROP TABLE IF EXISTS `comment`; CREATE TABLE `comment` ( `id` int(11) NOT NULL AUTO_INCREMENT, `comment` varchar(255) DEFAULT NULL, `userId` int(11) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; -- ---------------------------- -- Records of comment -- ---------------------------- BEGIN; INSERT INTO `comment` VALUES (1, 'test', 2); INSERT INTO `comment` VALUES (2, 'hello', 3); INSERT INTO `comment` VALUES (3, 'world', 3); COMMIT; -- ---------------------------- -- Table structure for user -- ---------------------------- DROP TABLE IF EXISTS `user`; CREATE TABLE `user` ( `id` int(11) NOT NULL AUTO_INCREMENT, `user` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci DEFAULT NULL, `nickname` varchar(255) DEFAULT NULL, `role` varchar(255) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci; -- ---------------------------- -- Records of user -- ---------------------------- BEGIN; INSERT INTO `user` VALUES (2, 'kevin', 'coldplay', 'boss'); INSERT INTO `user` VALUES (3, 'tony', 'tiger', 'employee'); INSERT INTO `user` VALUES (4, 'iris', 'cruise', 'employee'); COMMIT; SET FOREIGN_KEY_CHECKS = 1;
X Tutup