--- license: mit task_categories: - tabular-classification tags: - database - sql - mysql - drivecheck - hrms pretty_name: DriveCheck SQL Database Dump --- # DriveCheck Database Schema & Data Dump This dataset repository contains the MySQL database dump (`drivecheck_blank.sql`) for the **DriveCheck HRMS** (Human Resource Management System & Police Checking Point Roster System). ## Contents - `drivecheck_blank.sql`: MySQL relational database backup file containing schema definitions and initial seed tables for: - `users` (Admin & Employee details, Duty Roster schedules, Police Station assignments) - `user_types` (Role-based authorization mappings: Admin, Employee) - `checking_points` (Locations, Incharge details, Police station divisions) - `vehicle_checks` (Inspection records, vehicle numbers, shift entries) - `migrations`, `sessions`, `jobs`, `cache` ## Usage Instructions To import this database into your MySQL server: ```bash mysql -u root -p drivecheck < drivecheck_blank.sql ```