Created
October 23, 2018 08:55
-
-
Save hscstudio/d0d0f2277274230a861fc992de583eaf to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- phpMyAdmin SQL Dump | |
-- version 4.7.7 | |
-- https://www.phpmyadmin.net/ | |
-- | |
-- Host: mysql | |
-- Generation Time: Jul 26, 2018 at 07:44 AM | |
-- Server version: 5.7.21 | |
-- PHP Version: 7.1.9 | |
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; | |
SET AUTOCOMMIT = 0; | |
START TRANSACTION; | |
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: `larashop` | |
-- | |
-- -------------------------------------------------------- | |
-- | |
-- Table structure for table `books` | |
-- | |
CREATE TABLE `books` ( | |
`id` int(10) UNSIGNED NOT NULL, | |
`title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, | |
`slug` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, | |
`description` text COLLATE utf8mb4_unicode_ci NOT NULL, | |
`author` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, | |
`publisher` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, | |
`cover` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, | |
`price` double(8,2) NOT NULL, | |
`views` int(10) UNSIGNED NOT NULL DEFAULT '0', | |
`stock` int(10) UNSIGNED NOT NULL DEFAULT '0', | |
`status` enum('PUBLISH','DRAFT') COLLATE utf8mb4_unicode_ci NOT NULL, | |
`created_by` int(11) NOT NULL, | |
`updated_by` int(11) DEFAULT NULL, | |
`deleted_by` int(11) DEFAULT NULL, | |
`created_at` timestamp NULL DEFAULT NULL, | |
`updated_at` timestamp NULL DEFAULT NULL, | |
`deleted_at` timestamp NULL DEFAULT NULL | |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; | |
-- | |
-- Dumping data for table `books` | |
-- | |
INSERT INTO `books` (`id`, `title`, `slug`, `description`, `author`, `publisher`, `cover`, `price`, `views`, `stock`, `status`, `created_by`, `updated_by`, `deleted_by`, `created_at`, `updated_at`, `deleted_at`) VALUES | |
(1, 'How to become ninja web developer', 'how-to-become-ninja-web-developer', 'The description', 'Muhammad Azamuddin', 'Indie Publisher', 'book-covers/v8qBOxe9UEkQg6mnUEnkkFNjT27JESqj4zEUo60g.png', 199000.00, 0, 230, 'PUBLISH', 1, 1, NULL, '2018-07-26 07:17:41', '2018-07-26 07:19:10', NULL), | |
(2, 'How to become great man', 'how-to-become-great-man', 'The book description', 'Noone', 'Nopublisher', 'book-covers/riSvIG5fsoNOCE0OhwIdNh3EewgYuCLAqEPSaV9w.png', 390000.00, 0, 330, 'PUBLISH', 1, 1, NULL, '2018-07-26 07:20:14', '2018-07-26 07:21:42', NULL), | |
(3, 'How to print a shirt', 'how-to-print-a-shirt', 'Book description', 'Muhammad Azamuddin', 'Indie Publisher', 'book-covers/NJPLnMlIL9TgIatcUPEow91OhIXa2B5CwEezldz6.png', 390000.00, 0, 30, 'PUBLISH', 1, 1, NULL, '2018-07-26 07:20:47', '2018-07-26 07:21:53', NULL); | |
-- -------------------------------------------------------- | |
-- | |
-- Table structure for table `book_category` | |
-- | |
CREATE TABLE `book_category` ( | |
`id` int(10) UNSIGNED NOT NULL, | |
`book_id` int(10) UNSIGNED DEFAULT NULL, | |
`category_id` int(10) UNSIGNED DEFAULT NULL, | |
`created_at` timestamp NULL DEFAULT NULL, | |
`updated_at` timestamp NULL DEFAULT NULL | |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; | |
-- | |
-- Dumping data for table `book_category` | |
-- | |
INSERT INTO `book_category` (`id`, `book_id`, `category_id`, `created_at`, `updated_at`) VALUES | |
(1, 1, 2, NULL, NULL), | |
(2, 2, 5, NULL, NULL), | |
(3, 3, 6, NULL, NULL); | |
-- -------------------------------------------------------- | |
-- | |
-- Table structure for table `book_order` | |
-- | |
CREATE TABLE `book_order` ( | |
`id` int(10) UNSIGNED NOT NULL, | |
`order_id` int(10) UNSIGNED NOT NULL, | |
`book_id` int(10) UNSIGNED NOT NULL, | |
`quantity` int(10) UNSIGNED NOT NULL, | |
`created_at` timestamp NULL DEFAULT NULL, | |
`updated_at` timestamp NULL DEFAULT NULL | |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; | |
-- | |
-- Dumping data for table `book_order` | |
-- | |
INSERT INTO `book_order` (`id`, `order_id`, `book_id`, `quantity`, `created_at`, `updated_at`) VALUES | |
(1, 1, 3, 1, '2018-07-26 00:00:00', '2018-07-26 00:00:00'), | |
(2, 2, 2, 1, '2018-07-26 00:00:00', '2018-07-26 00:00:00'), | |
(3, 2, 3, 1, '2018-07-26 00:00:00', '2018-07-26 00:00:00'); | |
-- -------------------------------------------------------- | |
-- | |
-- Table structure for table `categories` | |
-- | |
CREATE TABLE `categories` ( | |
`id` int(10) UNSIGNED NOT NULL, | |
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, | |
`slug` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, | |
`image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL COMMENT 'berisi nama file image saja tanpa path', | |
`created_by` int(11) NOT NULL, | |
`updated_by` int(11) DEFAULT NULL, | |
`deleted_by` int(11) DEFAULT NULL, | |
`deleted_at` timestamp NULL DEFAULT NULL, | |
`created_at` timestamp NULL DEFAULT NULL, | |
`updated_at` timestamp NULL DEFAULT NULL | |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; | |
-- | |
-- Dumping data for table `categories` | |
-- | |
INSERT INTO `categories` (`id`, `name`, `slug`, `image`, `created_by`, `updated_by`, `deleted_by`, `deleted_at`, `created_at`, `updated_at`) VALUES | |
(2, 'Programming', 'programming', 'category_images/TOzjSpDAhf7IEaKn3z3UNZMowaodnLqtUtczfEBI.jpeg', 1, 1, NULL, NULL, '2018-07-16 04:04:48', '2018-07-26 07:17:59'), | |
(3, 'Hardware', 'hardware', 'category_images/sCYd3L9ZHPUa7bnTWIjaTDO3RWzCwfBPq5qbQL3h.jpeg', 1, 1, NULL, NULL, '2018-07-23 03:21:00', '2018-07-26 07:18:13'), | |
(4, 'Ilmiiah', 'ilmiiah', 'category_images/ej14L2H7HLHcvCFGZoT9GwTb2rX9nmEUNyKkEXKZ.jpeg', 1, NULL, NULL, NULL, '2018-07-23 03:21:15', '2018-07-23 03:21:15'), | |
(5, 'Self Development', 'self-development', 'category_images/nE9xMN84MaKeHyVG1jcwPF1ChOUvaYzGXjSI19Mu.png', 1, NULL, NULL, NULL, '2018-07-26 07:18:50', '2018-07-26 07:18:50'), | |
(6, 'Business', 'business', 'category_images/vLhVcc7mSOm5WzdxEifRqbj41KAwrxvB4qfEEkRh.png', 1, NULL, NULL, NULL, '2018-07-26 07:21:27', '2018-07-26 07:21:27'); | |
-- -------------------------------------------------------- | |
-- | |
-- Table structure for table `migrations` | |
-- | |
CREATE TABLE `migrations` ( | |
`id` int(10) UNSIGNED NOT NULL, | |
`migration` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, | |
`batch` int(11) NOT NULL | |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; | |
-- | |
-- Dumping data for table `migrations` | |
-- | |
INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES | |
(1, '2014_10_12_000000_create_users_table', 1), | |
(2, '2014_10_12_100000_create_password_resets_table', 1), | |
(6, '2018_07_10_115805_penyesuaian_table_users', 2), | |
(10, '2018_07_16_020754_create_table_categories', 3), | |
(25, '2018_07_21_203443_create_books_table', 4), | |
(26, '2018_07_21_204915_create_book_category_table', 5), | |
(28, '2018_07_25_075101_create_orders_table', 6), | |
(29, '2018_07_25_082000_create_book_order_table', 7); | |
-- -------------------------------------------------------- | |
-- | |
-- Table structure for table `orders` | |
-- | |
CREATE TABLE `orders` ( | |
`id` int(10) UNSIGNED NOT NULL, | |
`user_id` int(10) UNSIGNED NOT NULL, | |
`total_price` double(8,2) UNSIGNED NOT NULL, | |
`invoice_number` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, | |
`status` enum('SUBMIT','PROCESS','FINISH','CANCEL') COLLATE utf8mb4_unicode_ci NOT NULL, | |
`created_at` timestamp NULL DEFAULT NULL, | |
`updated_at` timestamp NULL DEFAULT NULL | |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; | |
-- | |
-- Dumping data for table `orders` | |
-- | |
INSERT INTO `orders` (`id`, `user_id`, `total_price`, `invoice_number`, `status`, `created_at`, `updated_at`) VALUES | |
(1, 7, 390000.00, '201807060001', 'FINISH', '2018-07-06 00:00:00', '2018-07-06 00:00:00'), | |
(2, 14, 780000.00, '201807250002', 'PROCESS', '2018-07-26 00:00:00', '2018-07-26 00:00:00'); | |
-- -------------------------------------------------------- | |
-- | |
-- Table structure for table `password_resets` | |
-- | |
CREATE TABLE `password_resets` ( | |
`email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, | |
`token` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, | |
`created_at` timestamp NULL DEFAULT NULL | |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; | |
-- -------------------------------------------------------- | |
-- | |
-- Table structure for table `users` | |
-- | |
CREATE TABLE `users` ( | |
`id` int(10) UNSIGNED NOT NULL, | |
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, | |
`email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, | |
`password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, | |
`remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, | |
`created_at` timestamp NULL DEFAULT NULL, | |
`updated_at` timestamp NULL DEFAULT NULL, | |
`username` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, | |
`roles` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, | |
`address` text COLLATE utf8mb4_unicode_ci, | |
`phone` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, | |
`avatar` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, | |
`status` enum('ACTIVE','INACTIVE') COLLATE utf8mb4_unicode_ci NOT NULL | |
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; | |
-- | |
-- Dumping data for table `users` | |
-- | |
INSERT INTO `users` (`id`, `name`, `email`, `password`, `remember_token`, `created_at`, `updated_at`, `username`, `roles`, `address`, `phone`, `avatar`, `status`) VALUES | |
(1, 'Site Administrator', '[email protected]', '$2y$10$CaHcu3RjHs2Yr1c.hgFOVeM77aJ2soN7JUBLyLyL1NZGMY2UqY3Vq', 'hqz73FvMNaZdNdXcpdXh2HyYmIup9SzqYTiMvshjeheFV239tY9U2RkIxwZ0', '2018-07-11 02:44:43', '2018-07-15 04:19:48', 'administrator', '[\"ADMIN\"]', NULL, NULL, 'avatars/wR1CrdcdvXRkqPeF4cOJkjccYjWLQ4YV4Yj41DaQ.jpeg', 'ACTIVE'), | |
(4, 'Muhammad Azamuddin', '[email protected]', 'bismillah', NULL, '2018-07-12 09:17:37', '2018-07-15 03:25:08', 'azamuddin91', '[\"ADMIN\",\"CUSTOMER\"]', 'Jalan Haji Sarmili', '0871111111', 'avatars/10o6t1i0mRM2BTNHnTYKrh69mSs68li91EDSmoXs.jpeg', 'ACTIVE'), | |
(7, 'Nadia Nurul Mila', '[email protected]', 'bismillah', NULL, '2018-07-13 07:59:30', '2018-07-15 09:13:02', 'nadia', '[\"STAFF\",\"CUSTOMER\"]', NULL, NULL, NULL, 'INACTIVE'), | |
(8, 'Hana Humaira', '[email protected]', 'bismillah', NULL, '2018-07-14 02:47:08', '2018-07-15 09:16:52', 'hana', '[\"ADMIN\",\"STAFF\"]', NULL, NULL, NULL, 'INACTIVE'), | |
(9, 'User Empat', '[email protected]', 'bismillah', NULL, '2018-07-14 02:50:04', '2018-07-14 02:50:04', 'user4', '[\"CUSTOMER\"]', NULL, NULL, NULL, 'ACTIVE'), | |
(10, 'User Lima', '[email protected]', 'bismillah', NULL, '2018-07-14 02:53:48', '2018-07-14 02:53:48', 'user5', '[\"ADMIN\"]', NULL, NULL, NULL, 'ACTIVE'), | |
(11, 'User Enam', '[email protected]', 'bismillah', NULL, '2018-07-14 02:55:38', '2018-07-14 02:55:38', 'user6', '[\"CUSTOMER\"]', NULL, NULL, NULL, 'ACTIVE'), | |
(12, 'Ridwan Mutaffaq', '[email protected]', 'bismillah', NULL, '2018-07-14 05:38:30', '2018-07-14 05:38:30', 'ridwan', '[\"STAFF\"]', 'Jalan Harapan Mulya III no 7\r\nKel Harapan Mulya, Kec Kemayoran', '85781107766', NULL, 'ACTIVE'), | |
(13, 'Test 1', '[email protected]', 'bismillah', NULL, '2018-07-14 05:54:35', '2018-07-15 03:04:35', 'test', '[\"ADMIN\",\"STAFF\"]', 'Jalan Harapan Mulya III no 7\r\nKel Harapan Mulya, Kec Kemayoran', '85781107766', 'avatars/F6iYMjHhsECdwYvi3xp6MQoQTcIDIeIJLV6sJy3s.png', 'ACTIVE'), | |
(14, 'Habib Asagaf', '[email protected]', 'bismillah', NULL, '2018-07-15 04:09:37', '2018-07-15 04:09:37', 'habib', '[\"ADMIN\",\"STAFF\"]', 'Jalan Harapan Mulya III no 7\r\nKel Harapan Mulya, Kec Kemayoran', '85781107766', 'avatars/wg7lugTyeRLtfjzzqr8vpRklOaOSHY99EdLFjTyy.jpeg', 'ACTIVE'), | |
(15, 'Iqbal Kholis', '[email protected]', 'bismillah', NULL, '2018-07-15 04:10:15', '2018-07-15 04:10:15', 'iqbal', '[\"ADMIN\"]', 'Jl Dr Wahidin No 1. Kompleks Kementerian Keuangan. Gedung Djuand\r\nKel Harapan Mulya, Kec Kemayoran', '85781150352', NULL, 'ACTIVE'), | |
(17, 'User ABC', '[email protected]', 'bismillah', NULL, '2018-07-15 10:03:19', '2018-07-15 10:03:19', 'userabc', '[\"STAFF\"]', 'Jalan Harapan Mulya III no 7\r\nKel Harapan Mulya, Kec Kemayoran', '85781107766', NULL, 'ACTIVE'), | |
(18, 'user def', '[email protected]', 'bismillah', NULL, '2018-07-15 10:03:47', '2018-07-15 10:03:47', 'userdef', '[\"ADMIN\",\"STAFF\"]', 'Jalan Harapan Mulya III no 7\r\nKel Harapan Mulya, Kec Kemayoran', '85781107766', NULL, 'ACTIVE'); | |
-- | |
-- Indexes for dumped tables | |
-- | |
-- | |
-- Indexes for table `books` | |
-- | |
ALTER TABLE `books` | |
ADD PRIMARY KEY (`id`); | |
-- | |
-- Indexes for table `book_category` | |
-- | |
ALTER TABLE `book_category` | |
ADD PRIMARY KEY (`id`), | |
ADD KEY `book_category_book_id_foreign` (`book_id`), | |
ADD KEY `book_category_category_id_foreign` (`category_id`); | |
-- | |
-- Indexes for table `book_order` | |
-- | |
ALTER TABLE `book_order` | |
ADD PRIMARY KEY (`id`), | |
ADD KEY `book_order_order_id_foreign` (`order_id`), | |
ADD KEY `book_order_book_id_foreign` (`book_id`); | |
-- | |
-- Indexes for table `categories` | |
-- | |
ALTER TABLE `categories` | |
ADD PRIMARY KEY (`id`), | |
ADD UNIQUE KEY `categories_slug_unique` (`slug`); | |
-- | |
-- Indexes for table `migrations` | |
-- | |
ALTER TABLE `migrations` | |
ADD PRIMARY KEY (`id`); | |
-- | |
-- Indexes for table `orders` | |
-- | |
ALTER TABLE `orders` | |
ADD PRIMARY KEY (`id`), | |
ADD KEY `orders_user_id_foreign` (`user_id`); | |
-- | |
-- Indexes for table `password_resets` | |
-- | |
ALTER TABLE `password_resets` | |
ADD KEY `password_resets_email_index` (`email`); | |
-- | |
-- Indexes for table `users` | |
-- | |
ALTER TABLE `users` | |
ADD PRIMARY KEY (`id`), | |
ADD UNIQUE KEY `users_email_unique` (`email`), | |
ADD UNIQUE KEY `users_username_unique` (`username`); | |
-- | |
-- AUTO_INCREMENT for dumped tables | |
-- | |
-- | |
-- AUTO_INCREMENT for table `books` | |
-- | |
ALTER TABLE `books` | |
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; | |
-- | |
-- AUTO_INCREMENT for table `book_category` | |
-- | |
ALTER TABLE `book_category` | |
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; | |
-- | |
-- AUTO_INCREMENT for table `book_order` | |
-- | |
ALTER TABLE `book_order` | |
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; | |
-- | |
-- AUTO_INCREMENT for table `categories` | |
-- | |
ALTER TABLE `categories` | |
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; | |
-- | |
-- AUTO_INCREMENT for table `migrations` | |
-- | |
ALTER TABLE `migrations` | |
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=30; | |
-- | |
-- AUTO_INCREMENT for table `orders` | |
-- | |
ALTER TABLE `orders` | |
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3; | |
-- | |
-- AUTO_INCREMENT for table `users` | |
-- | |
ALTER TABLE `users` | |
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=19; | |
-- | |
-- Constraints for dumped tables | |
-- | |
-- | |
-- Constraints for table `book_category` | |
-- | |
ALTER TABLE `book_category` | |
ADD CONSTRAINT `book_category_book_id_foreign` FOREIGN KEY (`book_id`) REFERENCES `books` (`id`), | |
ADD CONSTRAINT `book_category_category_id_foreign` FOREIGN KEY (`category_id`) REFERENCES `categories` (`id`); | |
-- | |
-- Constraints for table `book_order` | |
-- | |
ALTER TABLE `book_order` | |
ADD CONSTRAINT `book_order_book_id_foreign` FOREIGN KEY (`book_id`) REFERENCES `books` (`id`), | |
ADD CONSTRAINT `book_order_order_id_foreign` FOREIGN KEY (`order_id`) REFERENCES `orders` (`id`); | |
-- | |
-- Constraints for table `orders` | |
-- | |
ALTER TABLE `orders` | |
ADD CONSTRAINT `orders_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`); | |
COMMIT; | |
/*!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 */; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment