File size: 1,014 Bytes
4eaa7c7
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
---
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
```