-- phpMyAdmin SQL Dump -- version 5.2.1 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Generation Time: Jun 17, 2025 at 05:59 PM -- Server version: 10.4.32-MariaDB -- PHP Version: 8.2.12 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: `absensikukar` -- -- -------------------------------------------------------- -- -- Table structure for table `attendances` -- CREATE TABLE `attendances` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED NOT NULL, `date` date NOT NULL, `type` enum('in','out') NOT NULL, `time` time NOT NULL, `photo` varchar(255) NOT NULL, `latitude` decimal(10,8) NOT NULL, `longitude` decimal(11,8) NOT NULL, `location_id` bigint(20) UNSIGNED DEFAULT NULL, `status` enum('pending','accepted','rejected') NOT NULL DEFAULT 'pending', `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 `failed_jobs` -- CREATE TABLE `failed_jobs` ( `id` bigint(20) UNSIGNED NOT NULL, `uuid` varchar(255) NOT NULL, `connection` text NOT NULL, `queue` text NOT NULL, `payload` longtext NOT NULL, `exception` longtext NOT NULL, `failed_at` timestamp NOT NULL DEFAULT current_timestamp() ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `locations` -- CREATE TABLE `locations` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) NOT NULL, `group` varchar(255) DEFAULT NULL, `coordinates` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_bin NOT NULL CHECK (json_valid(`coordinates`)), `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 `locations` -- INSERT INTO `locations` (`id`, `name`, `group`, `coordinates`, `created_at`, `updated_at`) VALUES (1, 'ti-6851777ec0b76', 'group-1', '{\"lat\":-8.15710478424468,\"lng\":113.7232934371815}', '2025-06-17 07:11:10', '2025-06-17 07:11:10'), (2, 'ti-6851777ec0b76', 'group-1', '{\"lat\":-8.157370410275547,\"lng\":113.72285103715961}', '2025-06-17 07:11:10', '2025-06-17 07:11:10'), (3, 'ti-6851777ec0b76', 'group-1', '{\"lat\":-8.15776525945526,\"lng\":113.72309762077793}', '2025-06-17 07:11:10', '2025-06-17 07:11:10'), (4, 'ti-6851777ec0b76', 'group-1', '{\"lat\":-8.157862176921014,\"lng\":113.72436317493685}', '2025-06-17 07:11:10', '2025-06-17 07:11:10'), (5, 'ti-6851777ec0b76', 'group-1', '{\"lat\":-8.157284261311787,\"lng\":113.72439943723361}', '2025-06-17 07:11:10', '2025-06-17 07:11:10'), (6, 'ti-6851777ec0b76', 'group-1', '{\"lat\":-8.15710478424468,\"lng\":113.7232934371815}', '2025-06-17 07:11:10', '2025-06-17 07:11:10'), (7, 'kesehatan-685177d290193', 'group-1', '{\"lat\":-8.15710478424468,\"lng\":113.7232934371815}', '2025-06-17 07:12:34', '2025-06-17 07:12:34'), (8, 'kesehatan-685177d290193', 'group-1', '{\"lat\":-8.157370410275547,\"lng\":113.72285103715961}', '2025-06-17 07:12:34', '2025-06-17 07:12:34'), (9, 'kesehatan-685177d290193', 'group-1', '{\"lat\":-8.15776525945526,\"lng\":113.72309762077793}', '2025-06-17 07:12:34', '2025-06-17 07:12:34'), (10, 'kesehatan-685177d290193', 'group-1', '{\"lat\":-8.157862176921014,\"lng\":113.72436317493685}', '2025-06-17 07:12:34', '2025-06-17 07:12:34'), (11, 'kesehatan-685177d290193', 'group-1', '{\"lat\":-8.157284261311787,\"lng\":113.72439943723361}', '2025-06-17 07:12:34', '2025-06-17 07:12:34'), (12, 'kesehatan-685177d290193', 'group-1', '{\"lat\":-8.15710478424468,\"lng\":113.7232934371815}', '2025-06-17 07:12:34', '2025-06-17 07:12:34'); -- -------------------------------------------------------- -- -- Table structure for table `migrations` -- CREATE TABLE `migrations` ( `id` int(10) UNSIGNED NOT NULL, `migration` varchar(255) 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_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), (5, '2025_06_15_000001_create_user_profiles_table', 1), (6, '2025_06_15_000002_create_locations_table', 1), (7, '2025_06_15_000003_create_attendances_table', 1), (8, '2025_06_15_000005_create_permissions_table', 1); -- -------------------------------------------------------- -- -- Table structure for table `password_reset_tokens` -- CREATE TABLE `password_reset_tokens` ( `email` varchar(255) NOT NULL, `token` varchar(255) NOT NULL, `created_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `permissions` -- CREATE TABLE `permissions` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED NOT NULL, `start_date` date NOT NULL, `end_date` date NOT NULL, `category` varchar(255) NOT NULL, `reason` text NOT NULL, `proof_photo` varchar(255) DEFAULT NULL, `status` enum('pending','accepted','rejected') NOT NULL DEFAULT 'pending', `approved_by` bigint(20) UNSIGNED DEFAULT NULL, `approved_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 `permissions` -- INSERT INTO `permissions` (`id`, `user_id`, `start_date`, `end_date`, `category`, `reason`, `proof_photo`, `status`, `approved_by`, `approved_at`, `created_at`, `updated_at`) VALUES (1, 3, '2025-06-20', '2025-09-20', 'Sakit', 'Malas', 'permissions/1750168018_3_permission.png', 'accepted', 1, '2025-06-17 06:48:02', '2025-06-17 06:46:59', '2025-06-17 06:48:02'); -- -------------------------------------------------------- -- -- Table structure for table `personal_access_tokens` -- CREATE TABLE `personal_access_tokens` ( `id` bigint(20) UNSIGNED NOT NULL, `tokenable_type` varchar(255) NOT NULL, `tokenable_id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) NOT NULL, `token` varchar(64) NOT NULL, `abilities` text DEFAULT NULL, `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; -- -- Dumping data for table `personal_access_tokens` -- INSERT INTO `personal_access_tokens` (`id`, `tokenable_type`, `tokenable_id`, `name`, `token`, `abilities`, `last_used_at`, `expires_at`, `created_at`, `updated_at`) VALUES (4, 'App\\Models\\User', 2, 'auth_token', 'd48ac0aca30a23538aed41a095bf4cadb93ab08796be550b1c59e79639bbfff3', '[\"*\"]', NULL, NULL, '2025-06-17 06:19:23', '2025-06-17 06:19:23'), (8, 'App\\Models\\User', 3, 'auth_token', '4da034efd50c5ff32880f73faab8eaad2a7d684c3b0b73be888a58981585bf40', '[\"*\"]', '2025-06-17 07:04:10', NULL, '2025-06-17 06:33:56', '2025-06-17 07:04:10'), (9, 'App\\Models\\User', 1, 'auth_token', 'e79fb9a5f17396b180ccadb532acaafcc14610ebdb11be74a06d575ea7505ac4', '[\"*\"]', '2025-06-17 07:17:16', NULL, '2025-06-17 06:47:48', '2025-06-17 07:17:16'); -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE `users` ( `id` bigint(20) UNSIGNED NOT NULL, `name` varchar(255) NOT NULL, `email` varchar(255) NOT NULL, `email_verified_at` timestamp NULL DEFAULT NULL, `password` varchar(255) NOT NULL, `role` enum('admin','karyawan') NOT NULL DEFAULT 'karyawan', `remember_token` varchar(100) 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`, `email`, `email_verified_at`, `password`, `role`, `remember_token`, `created_at`, `updated_at`) VALUES (1, 'Admin', 'admin@example.com', '2025-06-17 04:38:54', '$2y$10$NUNYGHs.8/YaXRv/pevkleh3u8zjAolHnNmLZtaw3WXvVHnEb24LW', 'admin', 'ItCxXOapsq', '2025-06-17 04:38:54', '2025-06-17 04:38:54'), (2, 'John', 'john@example.com', NULL, '$2y$10$Rfw.ro1nC.M1XijXC9la4eZpVCycazZde.pX2B0RlvXyFretF9AaC', 'admin', NULL, '2025-06-17 06:19:23', '2025-06-17 06:19:23'), (3, 'budi', 'budi@example.com', NULL, '$2y$10$/e3xh5kJkv.8KP0Js2mJaeeY/a94EHzWO40oBCNugm5.uACS.wXLm', 'karyawan', NULL, '2025-06-17 06:32:52', '2025-06-17 06:32:52'); -- -------------------------------------------------------- -- -- Table structure for table `user_profiles` -- CREATE TABLE `user_profiles` ( `id` bigint(20) UNSIGNED NOT NULL, `user_id` bigint(20) UNSIGNED NOT NULL, `nip` varchar(255) NOT NULL, `position` varchar(255) NOT NULL, `phone_number` varchar(255) NOT NULL, `profile_photo` varchar(255) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Indexes for dumped tables -- -- -- Indexes for table `attendances` -- ALTER TABLE `attendances` ADD PRIMARY KEY (`id`), ADD KEY `attendances_user_id_foreign` (`user_id`), ADD KEY `attendances_location_id_foreign` (`location_id`); -- -- Indexes for table `failed_jobs` -- ALTER TABLE `failed_jobs` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `failed_jobs_uuid_unique` (`uuid`); -- -- Indexes for table `locations` -- ALTER TABLE `locations` ADD PRIMARY KEY (`id`), ADD KEY `locations_name_group_index` (`name`,`group`); -- -- 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 `permissions` -- ALTER TABLE `permissions` ADD PRIMARY KEY (`id`), ADD KEY `permissions_user_id_foreign` (`user_id`), ADD KEY `permissions_approved_by_foreign` (`approved_by`); -- -- 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 `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `users_email_unique` (`email`); -- -- Indexes for table `user_profiles` -- ALTER TABLE `user_profiles` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `user_profiles_nip_unique` (`nip`), ADD KEY `user_profiles_user_id_foreign` (`user_id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `attendances` -- ALTER TABLE `attendances` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `failed_jobs` -- ALTER TABLE `failed_jobs` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `locations` -- ALTER TABLE `locations` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13; -- -- AUTO_INCREMENT for table `migrations` -- ALTER TABLE `migrations` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9; -- -- AUTO_INCREMENT for table `permissions` -- ALTER TABLE `permissions` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `personal_access_tokens` -- ALTER TABLE `personal_access_tokens` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10; -- -- AUTO_INCREMENT for table `users` -- ALTER TABLE `users` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT for table `user_profiles` -- ALTER TABLE `user_profiles` MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- Constraints for dumped tables -- -- -- Constraints for table `attendances` -- ALTER TABLE `attendances` ADD CONSTRAINT `attendances_location_id_foreign` FOREIGN KEY (`location_id`) REFERENCES `locations` (`id`), ADD CONSTRAINT `attendances_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; -- -- Constraints for table `permissions` -- ALTER TABLE `permissions` ADD CONSTRAINT `permissions_approved_by_foreign` FOREIGN KEY (`approved_by`) REFERENCES `users` (`id`), ADD CONSTRAINT `permissions_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; -- -- Constraints for table `user_profiles` -- ALTER TABLE `user_profiles` ADD CONSTRAINT `user_profiles_user_id_foreign` FOREIGN KEY (`user_id`) REFERENCES `users` (`id`) ON DELETE CASCADE; 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 */;