You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
231 lines
7.2 KiB
231 lines
7.2 KiB
1 year ago
|
-- phpMyAdmin SQL Dump
|
||
|
-- version 5.2.0
|
||
|
-- https://www.phpmyadmin.net/
|
||
|
--
|
||
|
-- Host: localhost:3306
|
||
|
-- Generation Time: Sep 19, 2023 at 02:06 PM
|
||
|
-- Server version: 8.0.30
|
||
|
-- PHP Version: 8.1.10
|
||
|
|
||
|
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
|
||
|
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: `stok_barang`
|
||
|
--
|
||
|
|
||
|
-- --------------------------------------------------------
|
||
|
|
||
|
--
|
||
|
-- Table structure for table `failed_jobs`
|
||
|
--
|
||
|
|
||
|
CREATE TABLE `failed_jobs` (
|
||
|
`id` bigint UNSIGNED NOT NULL,
|
||
|
`uuid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
|
||
|
`connection` text COLLATE utf8mb4_unicode_ci NOT NULL,
|
||
|
`queue` text COLLATE utf8mb4_unicode_ci NOT NULL,
|
||
|
`payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
|
||
|
`exception` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
|
||
|
`failed_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
|
||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||
|
|
||
|
-- --------------------------------------------------------
|
||
|
|
||
|
--
|
||
|
-- Table structure for table `migrations`
|
||
|
--
|
||
|
|
||
|
CREATE TABLE `migrations` (
|
||
|
`id` int UNSIGNED NOT NULL,
|
||
|
`migration` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
|
||
|
`batch` int 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_reset_tokens_table', 1),
|
||
|
(3, '2019_08_19_000000_create_failed_jobs_table', 1),
|
||
|
(4, '2019_12_14_000001_create_personal_access_tokens_table', 1),
|
||
|
(11, '2023_09_18_044121_create_products_table', 2);
|
||
|
|
||
|
-- --------------------------------------------------------
|
||
|
|
||
|
--
|
||
|
-- Table structure for table `password_reset_tokens`
|
||
|
--
|
||
|
|
||
|
CREATE TABLE `password_reset_tokens` (
|
||
|
`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 `personal_access_tokens`
|
||
|
--
|
||
|
|
||
|
CREATE TABLE `personal_access_tokens` (
|
||
|
`id` bigint UNSIGNED NOT NULL,
|
||
|
`tokenable_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
|
||
|
`tokenable_id` bigint UNSIGNED NOT NULL,
|
||
|
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
|
||
|
`token` varchar(64) COLLATE utf8mb4_unicode_ci NOT NULL,
|
||
|
`abilities` text COLLATE utf8mb4_unicode_ci,
|
||
|
`last_used_at` timestamp NULL DEFAULT NULL,
|
||
|
`expires_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;
|
||
|
|
||
|
-- --------------------------------------------------------
|
||
|
|
||
|
--
|
||
|
-- Table structure for table `products`
|
||
|
--
|
||
|
|
||
|
CREATE TABLE `products` (
|
||
|
`id` bigint UNSIGNED NOT NULL,
|
||
|
`nama_barang` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
|
||
|
`kode_barang` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
|
||
|
`stok` int NOT NULL,
|
||
|
`harga` decimal(10,3) NOT NULL,
|
||
|
`deskripsi` varchar(255) 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 `products`
|
||
|
--
|
||
|
|
||
|
INSERT INTO `products` (`id`, `nama_barang`, `kode_barang`, `stok`, `harga`, `deskripsi`, `created_at`, `updated_at`) VALUES
|
||
|
(3, 'mobil', 'BRG20239', 5, '9000000.000', 'zczcsdscs', '2023-09-19 05:00:53', '2023-09-19 05:00:53'),
|
||
|
(4, 'ssa', 'BRG202310', 11, '9000.000', 'sadsdsa', '2023-09-19 05:02:03', '2023-09-19 05:02:03');
|
||
|
|
||
|
-- --------------------------------------------------------
|
||
|
|
||
|
--
|
||
|
-- Table structure for table `users`
|
||
|
--
|
||
|
|
||
|
CREATE TABLE `users` (
|
||
|
`id` bigint UNSIGNED NOT NULL,
|
||
|
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
|
||
|
`foto` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
|
||
|
`phone` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
|
||
|
`email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
|
||
|
`alamat` mediumtext COLLATE utf8mb4_unicode_ci,
|
||
|
`tgl_lahir` date DEFAULT NULL,
|
||
|
`jenis_kelamin` enum('L','P') COLLATE utf8mb4_unicode_ci DEFAULT NULL,
|
||
|
`agama` enum('Islam','Kristen','Katolik','Hindu','Budha','Konghucu') COLLATE utf8mb4_unicode_ci DEFAULT NULL,
|
||
|
`email_verified_at` timestamp NULL DEFAULT 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
|
||
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
||
|
|
||
|
--
|
||
|
-- Dumping data for table `users`
|
||
|
--
|
||
|
|
||
|
INSERT INTO `users` (`id`, `name`, `foto`, `phone`, `email`, `alamat`, `tgl_lahir`, `jenis_kelamin`, `agama`, `email_verified_at`, `password`, `remember_token`, `created_at`, `updated_at`) VALUES
|
||
|
(1, 'Gunawan', 'profile_photos/c0ocuUaxpQcDAlk2DaNKIEiEeuI9b8FKAOqVMm85.jpg', '085259079010', 'gunawan19621@gmail.com', 'Jln. Gelarmendala RT04 / RW02, Blok Ciwatu Kec. Balongan Kab. Indramayu', '2023-08-01', 'L', 'Islam', NULL, '$2y$10$5sKdhybh6h1PjVTCu2T8M.RPyYscAqvy1NoMfhJMVthn9grpL4o.S', NULL, '2023-08-24 07:07:26', '2023-08-31 07:31:53');
|
||
|
|
||
|
--
|
||
|
-- Indexes for dumped tables
|
||
|
--
|
||
|
|
||
|
--
|
||
|
-- Indexes for table `failed_jobs`
|
||
|
--
|
||
|
ALTER TABLE `failed_jobs`
|
||
|
ADD PRIMARY KEY (`id`),
|
||
|
ADD UNIQUE KEY `failed_jobs_uuid_unique` (`uuid`);
|
||
|
|
||
|
--
|
||
|
-- Indexes for table `migrations`
|
||
|
--
|
||
|
ALTER TABLE `migrations`
|
||
|
ADD PRIMARY KEY (`id`);
|
||
|
|
||
|
--
|
||
|
-- Indexes for table `password_reset_tokens`
|
||
|
--
|
||
|
ALTER TABLE `password_reset_tokens`
|
||
|
ADD PRIMARY KEY (`email`);
|
||
|
|
||
|
--
|
||
|
-- Indexes for table `personal_access_tokens`
|
||
|
--
|
||
|
ALTER TABLE `personal_access_tokens`
|
||
|
ADD PRIMARY KEY (`id`),
|
||
|
ADD UNIQUE KEY `personal_access_tokens_token_unique` (`token`),
|
||
|
ADD KEY `personal_access_tokens_tokenable_type_tokenable_id_index` (`tokenable_type`,`tokenable_id`);
|
||
|
|
||
|
--
|
||
|
-- Indexes for table `products`
|
||
|
--
|
||
|
ALTER TABLE `products`
|
||
|
ADD PRIMARY KEY (`id`);
|
||
|
|
||
|
--
|
||
|
-- Indexes for table `users`
|
||
|
--
|
||
|
ALTER TABLE `users`
|
||
|
ADD PRIMARY KEY (`id`),
|
||
|
ADD UNIQUE KEY `users_email_unique` (`email`);
|
||
|
|
||
|
--
|
||
|
-- AUTO_INCREMENT for dumped tables
|
||
|
--
|
||
|
|
||
|
--
|
||
|
-- AUTO_INCREMENT for table `failed_jobs`
|
||
|
--
|
||
|
ALTER TABLE `failed_jobs`
|
||
|
MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT;
|
||
|
|
||
|
--
|
||
|
-- AUTO_INCREMENT for table `migrations`
|
||
|
--
|
||
|
ALTER TABLE `migrations`
|
||
|
MODIFY `id` int UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12;
|
||
|
|
||
|
--
|
||
|
-- AUTO_INCREMENT for table `personal_access_tokens`
|
||
|
--
|
||
|
ALTER TABLE `personal_access_tokens`
|
||
|
MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT;
|
||
|
|
||
|
--
|
||
|
-- AUTO_INCREMENT for table `products`
|
||
|
--
|
||
|
ALTER TABLE `products`
|
||
|
MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;
|
||
|
|
||
|
--
|
||
|
-- AUTO_INCREMENT for table `users`
|
||
|
--
|
||
|
ALTER TABLE `users`
|
||
|
MODIFY `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
|
||
|
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 */;
|