385 lines
11 KiB
SQL
385 lines
11 KiB
SQL
-- phpMyAdmin SQL Dump
|
|
-- version 5.2.0
|
|
-- https://www.phpmyadmin.net/
|
|
--
|
|
-- Host: 127.0.0.1
|
|
-- Generation Time: May 20, 2024 at 05:45 PM
|
|
-- Server version: 5.7.33
|
|
-- PHP Version: 8.1.22
|
|
|
|
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: `skripsi_zidan`
|
|
--
|
|
|
|
-- --------------------------------------------------------
|
|
|
|
--
|
|
-- Table structure for table `failed_jobs`
|
|
--
|
|
|
|
CREATE TABLE `failed_jobs` (
|
|
`id` bigint(20) 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(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),
|
|
(3, '2019_08_19_000000_create_failed_jobs_table', 1),
|
|
(4, '2019_12_14_000001_create_personal_access_tokens_table', 1);
|
|
|
|
-- --------------------------------------------------------
|
|
|
|
--
|
|
-- Table structure for table `password_resets`
|
|
--
|
|
|
|
CREATE TABLE `password_resets` (
|
|
`uuid` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
|
|
`email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
|
|
`token` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
|
|
`isUsed` int(11) NOT NULL,
|
|
`created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
|
|
|
--
|
|
-- Dumping data for table `password_resets`
|
|
--
|
|
|
|
INSERT INTO `password_resets` (`uuid`, `email`, `token`, `isUsed`, `created_at`) VALUES
|
|
('2a16b010-a96a-4d16-b579-52dc50f3ff89', 'yonatanagave@gmail.com', '976871b0646b2c055ffc6a6408048ba6', 0, '2023-12-28 14:56:29'),
|
|
('74f0ae01-1d0f-487a-b4bd-49d91dd1783b', 'officialnuzulzaif124@gmail.com', '985a92a858cec0a0c8024444af20f01c', 0, '2024-04-02 13:58:33'),
|
|
('8c40d1a7-a6c8-4d05-9ffa-08be157e4261', 'officialnuzulzaif124@gmail.com', 'f915b09ae1f430cc98b9942dfa470480', 0, '2024-04-02 14:03:16'),
|
|
('ddf0b068-d7a7-4d84-bdcc-db2ad60dcef1', 'localvalorants@gmail.com', '27e668f86a14cc8d4eb980ccc430888e', 1, '2023-09-18 07:05:45'),
|
|
('ed5ec1c1-b9a8-4b2c-8c9f-91811dcf3aa1', 'localvalorants@gmail.com', '33790bd44168c13461111d0e9de6a8ee', 0, '2023-09-19 06:17:59'),
|
|
('f63c96d5-7f55-4da2-baf6-c3412d7e023c', 'officialnuzulzaif124@gmail.com', '4a81a4838bfb11fb29345021ea8cf23c', 0, '2024-04-02 13:53:34');
|
|
|
|
-- --------------------------------------------------------
|
|
|
|
--
|
|
-- Table structure for table `personal_access_tokens`
|
|
--
|
|
|
|
CREATE TABLE `personal_access_tokens` (
|
|
`id` bigint(20) UNSIGNED NOT NULL,
|
|
`tokenable_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
|
|
`tokenable_id` bigint(20) 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,
|
|
`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 `tbl_akun`
|
|
--
|
|
|
|
CREATE TABLE `tbl_akun` (
|
|
`id` int(11) NOT NULL,
|
|
`nama_akun` varchar(100) DEFAULT NULL,
|
|
`kode_akun` varchar(5) DEFAULT NULL
|
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|
|
|
--
|
|
-- Dumping data for table `tbl_akun`
|
|
--
|
|
|
|
INSERT INTO `tbl_akun` (`id`, `nama_akun`, `kode_akun`) VALUES
|
|
(1, 'Kas', '110'),
|
|
(2, 'Piutang Usaha', '120'),
|
|
(3, 'Peralatan Usaha', '140'),
|
|
(5, 'Tanah', '160'),
|
|
(9, 'Pendapatan', '510'),
|
|
(11, 'Utilities (Listrik, Air, & Gas)', '420');
|
|
|
|
-- --------------------------------------------------------
|
|
|
|
--
|
|
-- Table structure for table `tbl_jurnal`
|
|
--
|
|
|
|
CREATE TABLE `tbl_jurnal` (
|
|
`id` int(11) NOT NULL,
|
|
`keterangan` varchar(255) DEFAULT NULL,
|
|
`waktu_transaksi` date DEFAULT NULL,
|
|
`nominal` int(10) UNSIGNED DEFAULT NULL,
|
|
`tipe` enum('d','k') DEFAULT NULL,
|
|
`id_akun` int(10) UNSIGNED DEFAULT NULL,
|
|
`created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
`updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
|
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|
|
|
--
|
|
-- Dumping data for table `tbl_jurnal`
|
|
--
|
|
|
|
INSERT INTO `tbl_jurnal` (`id`, `keterangan`, `waktu_transaksi`, `nominal`, `tipe`, `id_akun`, `created_at`, `updated_at`) VALUES
|
|
(1, 'Modal', '2024-05-01', 50000, 'd', 1, '2024-05-21 00:20:04', '2024-05-21 00:20:04');
|
|
|
|
-- --------------------------------------------------------
|
|
|
|
--
|
|
-- Table structure for table `tbl_log_activity`
|
|
--
|
|
|
|
CREATE TABLE `tbl_log_activity` (
|
|
`uid` char(40) NOT NULL,
|
|
`logType` int(11) NOT NULL DEFAULT '1' COMMENT '1: Login\r\n2: General',
|
|
`causedBy` int(11) NOT NULL,
|
|
`performedOn` varchar(50) NOT NULL,
|
|
`withContent` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin,
|
|
`created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP
|
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|
|
|
-- --------------------------------------------------------
|
|
|
|
--
|
|
-- Table structure for table `tbl_produk`
|
|
--
|
|
|
|
CREATE TABLE `tbl_produk` (
|
|
`id` int(11) NOT NULL,
|
|
`name` varchar(255) NOT NULL,
|
|
`stok` int(11) NOT NULL,
|
|
`price` double NOT NULL,
|
|
`created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
`updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
|
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|
|
|
-- --------------------------------------------------------
|
|
|
|
--
|
|
-- Table structure for table `tbl_role`
|
|
--
|
|
|
|
CREATE TABLE `tbl_role` (
|
|
`id` int(11) NOT NULL,
|
|
`name` varchar(100) NOT NULL
|
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|
|
|
--
|
|
-- Dumping data for table `tbl_role`
|
|
--
|
|
|
|
INSERT INTO `tbl_role` (`id`, `name`) VALUES
|
|
(1, 'Administrator'),
|
|
(2, 'User');
|
|
|
|
-- --------------------------------------------------------
|
|
|
|
--
|
|
-- Table structure for table `tbl_transaksi`
|
|
--
|
|
|
|
CREATE TABLE `tbl_transaksi` (
|
|
`id` int(11) NOT NULL,
|
|
`id_product` int(11) NOT NULL,
|
|
`qty` int(11) NOT NULL,
|
|
`total` double NOT NULL,
|
|
`created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
|
`updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
|
|
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
|
|
|
|
-- --------------------------------------------------------
|
|
|
|
--
|
|
-- Table structure for table `tbl_users`
|
|
--
|
|
|
|
CREATE TABLE `tbl_users` (
|
|
`id` bigint(20) UNSIGNED NOT NULL,
|
|
`name` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
|
|
`username` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
|
|
`email` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
|
|
`email_verified_at` timestamp NULL DEFAULT NULL,
|
|
`email_verified_token` text COLLATE utf8mb4_unicode_ci,
|
|
`password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
|
|
`level` int(11) DEFAULT '3',
|
|
`phone` text COLLATE utf8mb4_unicode_ci,
|
|
`status` int(11) NOT NULL DEFAULT '3' COMMENT '1: Active, 2: Non Active, 3: Deactivated, 4: Not Verified',
|
|
`thumbnail` text COLLATE utf8mb4_unicode_ci,
|
|
`remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
|
|
`created_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
|
|
`updated_at` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP
|
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
|
|
|
|
--
|
|
-- Dumping data for table `tbl_users`
|
|
--
|
|
|
|
INSERT INTO `tbl_users` (`id`, `name`, `username`, `email`, `email_verified_at`, `email_verified_token`, `password`, `level`, `phone`, `status`, `thumbnail`, `remember_token`, `created_at`, `updated_at`) VALUES
|
|
(1, 'Administrator', 'admin', 'admin@tugas.com', NULL, NULL, '$2y$10$/326LL0MKwXcpSG9hVQlkuSrhQHnVkH6cB2Pvqi7VidQhcZQbqJQi', 1, NULL, 1, '', NULL, '2022-06-09 23:01:32', '2024-03-25 05:36:47');
|
|
|
|
--
|
|
-- 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_resets`
|
|
--
|
|
ALTER TABLE `password_resets`
|
|
ADD PRIMARY KEY (`uuid`),
|
|
ADD KEY `password_resets_email_index` (`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 `tbl_akun`
|
|
--
|
|
ALTER TABLE `tbl_akun`
|
|
ADD PRIMARY KEY (`id`);
|
|
|
|
--
|
|
-- Indexes for table `tbl_jurnal`
|
|
--
|
|
ALTER TABLE `tbl_jurnal`
|
|
ADD PRIMARY KEY (`id`);
|
|
|
|
--
|
|
-- Indexes for table `tbl_log_activity`
|
|
--
|
|
ALTER TABLE `tbl_log_activity`
|
|
ADD PRIMARY KEY (`uid`);
|
|
|
|
--
|
|
-- Indexes for table `tbl_produk`
|
|
--
|
|
ALTER TABLE `tbl_produk`
|
|
ADD PRIMARY KEY (`id`);
|
|
|
|
--
|
|
-- Indexes for table `tbl_role`
|
|
--
|
|
ALTER TABLE `tbl_role`
|
|
ADD PRIMARY KEY (`id`);
|
|
|
|
--
|
|
-- Indexes for table `tbl_transaksi`
|
|
--
|
|
ALTER TABLE `tbl_transaksi`
|
|
ADD PRIMARY KEY (`id`);
|
|
|
|
--
|
|
-- Indexes for table `tbl_users`
|
|
--
|
|
ALTER TABLE `tbl_users`
|
|
ADD PRIMARY KEY (`id`),
|
|
ADD UNIQUE KEY `users_username_unique` (`username`);
|
|
|
|
--
|
|
-- AUTO_INCREMENT for dumped tables
|
|
--
|
|
|
|
--
|
|
-- AUTO_INCREMENT for table `failed_jobs`
|
|
--
|
|
ALTER TABLE `failed_jobs`
|
|
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
|
|
|
|
--
|
|
-- AUTO_INCREMENT for table `migrations`
|
|
--
|
|
ALTER TABLE `migrations`
|
|
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;
|
|
|
|
--
|
|
-- AUTO_INCREMENT for table `personal_access_tokens`
|
|
--
|
|
ALTER TABLE `personal_access_tokens`
|
|
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
|
|
|
|
--
|
|
-- AUTO_INCREMENT for table `tbl_akun`
|
|
--
|
|
ALTER TABLE `tbl_akun`
|
|
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=14;
|
|
|
|
--
|
|
-- AUTO_INCREMENT for table `tbl_jurnal`
|
|
--
|
|
ALTER TABLE `tbl_jurnal`
|
|
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
|
|
|
|
--
|
|
-- AUTO_INCREMENT for table `tbl_produk`
|
|
--
|
|
ALTER TABLE `tbl_produk`
|
|
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
|
|
|
|
--
|
|
-- AUTO_INCREMENT for table `tbl_role`
|
|
--
|
|
ALTER TABLE `tbl_role`
|
|
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=3;
|
|
|
|
--
|
|
-- AUTO_INCREMENT for table `tbl_transaksi`
|
|
--
|
|
ALTER TABLE `tbl_transaksi`
|
|
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
|
|
|
|
--
|
|
-- AUTO_INCREMENT for table `tbl_users`
|
|
--
|
|
ALTER TABLE `tbl_users`
|
|
MODIFY `id` bigint(20) 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 */;
|