| |
| |
| |
| |
| |
| |
| |
| |
|
|
| SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; |
| START TRANSACTION; |
| SET time_zone = "+00:00"; |
|
|
|
|
| ; |
| ; |
| ; |
| ; |
|
|
| |
| |
| |
|
|
| |
|
|
| |
| |
| |
|
|
| DROP TABLE IF EXISTS `cache`; |
| CREATE TABLE IF NOT EXISTS `cache` ( |
| `key` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, |
| `value` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL, |
| `expiration` bigint NOT NULL, |
| PRIMARY KEY (`key`), |
| KEY `cache_expiration_index` (`expiration`) |
| ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
|
|
| |
|
|
| |
| |
| |
|
|
| DROP TABLE IF EXISTS `cache_locks`; |
| CREATE TABLE IF NOT EXISTS `cache_locks` ( |
| `key` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, |
| `owner` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, |
| `expiration` bigint NOT NULL, |
| PRIMARY KEY (`key`), |
| KEY `cache_locks_expiration_index` (`expiration`) |
| ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
|
|
| |
|
|
| |
| |
| |
|
|
| DROP TABLE IF EXISTS `checking_points`; |
| CREATE TABLE IF NOT EXISTS `checking_points` ( |
| `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, |
| `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, |
| `incharge_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, |
| `police_station` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, |
| `created_at` timestamp NULL DEFAULT NULL, |
| `updated_at` timestamp NULL DEFAULT NULL, |
| PRIMARY KEY (`id`) |
| ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
|
|
| |
|
|
| |
| |
| |
|
|
| DROP TABLE IF EXISTS `failed_jobs`; |
| CREATE TABLE IF NOT EXISTS `failed_jobs` ( |
| `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, |
| `uuid` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, |
| `connection` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, |
| `queue` varchar(191) 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, |
| PRIMARY KEY (`id`), |
| UNIQUE KEY `failed_jobs_uuid_unique` (`uuid`) |
| ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
|
|
| |
|
|
| |
| |
| |
|
|
| DROP TABLE IF EXISTS `jobs`; |
| CREATE TABLE IF NOT EXISTS `jobs` ( |
| `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, |
| `queue` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, |
| `payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL, |
| `attempts` smallint UNSIGNED NOT NULL, |
| `reserved_at` int UNSIGNED DEFAULT NULL, |
| `available_at` int UNSIGNED NOT NULL, |
| `created_at` int UNSIGNED NOT NULL, |
| PRIMARY KEY (`id`), |
| KEY `jobs_queue_index` (`queue`) |
| ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
|
|
| |
|
|
| |
| |
| |
|
|
| DROP TABLE IF EXISTS `job_batches`; |
| CREATE TABLE IF NOT EXISTS `job_batches` ( |
| `id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, |
| `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, |
| `total_jobs` int NOT NULL, |
| `pending_jobs` int NOT NULL, |
| `failed_jobs` int NOT NULL, |
| `failed_job_ids` longtext COLLATE utf8mb4_unicode_ci NOT NULL, |
| `options` mediumtext COLLATE utf8mb4_unicode_ci, |
| `cancelled_at` int DEFAULT NULL, |
| `created_at` int NOT NULL, |
| `finished_at` int DEFAULT NULL, |
| PRIMARY KEY (`id`) |
| ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
|
|
| |
|
|
| |
| |
| |
|
|
| DROP TABLE IF EXISTS `migrations`; |
| CREATE TABLE IF NOT EXISTS `migrations` ( |
| `id` int UNSIGNED NOT NULL AUTO_INCREMENT, |
| `migration` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, |
| `batch` int NOT NULL, |
| PRIMARY KEY (`id`) |
| ) ENGINE=MyISAM AUTO_INCREMENT=29 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
|
|
| |
| |
| |
|
|
| INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES |
| (16, '0000_00_00_000000_create_user_types_table', 1), |
| (17, '0001_01_01_000000_create_users_table', 1), |
| (18, '0001_01_01_000001_create_cache_table', 1), |
| (19, '0001_01_01_000002_create_jobs_table', 1), |
| (20, '2026_07_06_081532_add_profile_fields_to_users_table', 2), |
| (21, '2026_07_06_091431_create_checking_points_table', 3), |
| (22, '2026_07_06_091431_create_vehicle_checks_table', 3), |
| (23, '2026_07_09_185222_add_police_station_to_checking_points_table', 4), |
| (24, '2026_07_09_191759_alter_shift_type_in_vehicle_checks_table', 5), |
| (25, '2026_07_09_200406_add_duty_time_to_users_table', 6), |
| (26, '2026_07_14_023805_change_duty_time_to_start_end_in_users_table', 7), |
| (27, '2026_07_17_112549_add_incharge_name_to_checking_points_table', 8), |
| (28, '2026_07_17_114758_add_roster_name_to_users_table', 9); |
|
|
| |
|
|
| |
| |
| |
|
|
| DROP TABLE IF EXISTS `password_reset_tokens`; |
| CREATE TABLE IF NOT EXISTS `password_reset_tokens` ( |
| `email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, |
| `token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, |
| `created_at` timestamp NULL DEFAULT NULL, |
| PRIMARY KEY (`email`) |
| ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
|
|
| |
|
|
| |
| |
| |
|
|
| DROP TABLE IF EXISTS `sessions`; |
| CREATE TABLE IF NOT EXISTS `sessions` ( |
| `id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, |
| `user_id` bigint UNSIGNED DEFAULT NULL, |
| `ip_address` varchar(45) COLLATE utf8mb4_unicode_ci DEFAULT NULL, |
| `user_agent` text COLLATE utf8mb4_unicode_ci, |
| `payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL, |
| `last_activity` int NOT NULL, |
| PRIMARY KEY (`id`), |
| KEY `sessions_user_id_index` (`user_id`), |
| KEY `sessions_last_activity_index` (`last_activity`) |
| ) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
|
|
| |
|
|
| |
| |
| |
|
|
| DROP TABLE IF EXISTS `users`; |
| CREATE TABLE IF NOT EXISTS `users` ( |
| `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, |
| `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, |
| `roster_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, |
| `email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, |
| `profile_photo` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, |
| `dob` date DEFAULT NULL, |
| `email_verified_at` timestamp NULL DEFAULT NULL, |
| `password` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, |
| `user_type_id` bigint UNSIGNED NOT NULL DEFAULT '2', |
| `employee_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, |
| `policestation` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, |
| `mobile_no` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, |
| `is_active` tinyint(1) NOT NULL DEFAULT '0', |
| `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, |
| `created_at` timestamp NULL DEFAULT NULL, |
| `updated_at` timestamp NULL DEFAULT NULL, |
| `assigned_shift` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, |
| `assigned_checking_point_id` bigint UNSIGNED DEFAULT NULL, |
| `duty_start_time` time DEFAULT NULL, |
| `duty_end_time` time DEFAULT NULL, |
| PRIMARY KEY (`id`), |
| UNIQUE KEY `users_email_unique` (`email`), |
| KEY `users_user_type_id_foreign` (`user_type_id`) |
| ) ENGINE=MyISAM AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
|
|
| |
|
|
| |
| |
| |
|
|
| DROP TABLE IF EXISTS `user_types`; |
| CREATE TABLE IF NOT EXISTS `user_types` ( |
| `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, |
| `type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, |
| `created_at` timestamp NULL DEFAULT NULL, |
| `updated_at` timestamp NULL DEFAULT NULL, |
| PRIMARY KEY (`id`) |
| ) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
|
|
| |
| |
| |
|
|
| INSERT INTO `user_types` (`id`, `type`, `created_at`, `updated_at`) VALUES |
| (1, 'Admin', '2026-07-04 07:44:47', '2026-07-04 07:44:47'), |
| (2, 'Employee', '2026-07-04 07:44:47', '2026-07-04 07:44:47'); |
|
|
| |
|
|
| |
| |
| |
|
|
| DROP TABLE IF EXISTS `vehicle_checks`; |
| CREATE TABLE IF NOT EXISTS `vehicle_checks` ( |
| `id` bigint UNSIGNED NOT NULL AUTO_INCREMENT, |
| `user_id` bigint UNSIGNED NOT NULL, |
| `checking_point_id` bigint UNSIGNED NOT NULL, |
| `person_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, |
| `shift_date` date NOT NULL, |
| `shift_type` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, |
| `vehicle_no` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, |
| `employee_id_no` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, |
| `vehicle_photo` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, |
| `checking_time` time NOT NULL, |
| `remark` text COLLATE utf8mb4_unicode_ci, |
| `created_at` timestamp NULL DEFAULT NULL, |
| `updated_at` timestamp NULL DEFAULT NULL, |
| PRIMARY KEY (`id`), |
| KEY `vehicle_checks_user_id_foreign` (`user_id`), |
| KEY `vehicle_checks_checking_point_id_foreign` (`checking_point_id`) |
| ) ENGINE=MyISAM AUTO_INCREMENT=277 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
| COMMIT; |
|
|
| ; |
| ; |
| ; |
|
|