wp_hrp_employees
StaticStores hrp employees data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑ID | bigint(20) UNSIGNED | NO |
| user_id | bigint(20) | YES |
| photo_id | bigint(20) | YES |
| employee_id | varchar(20) | YES |
| name | varchar(40) | YES |
| date_of_hire | date | YES |
| termination_date | date | YES |
| date_of_birth | date | YES |
| department | bigint(20) | YES |
| designation | bigint(20) | YES |
| location | varchar(50) | YES |
| source_of_hire | varchar(50) | YES |
| type | varchar(20) | YES |
| status | varchar(10) | YES |
| reporting_to | bigint(20) | YES |
| pay_rate | decimal(20,2) unsigned | YES |
| pay_type | varchar(20) | YES |
| mobile | varchar(50) | YES |
| shift_id | bigint(20) | YES |
| deleted_at | datetime | YES |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS `wp_hrp_employees`( ID bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, `user_id` bigint(20) DEFAULT NULL, photo_id bigint(20) DEFAULT NULL, employee_id varchar(20) DEFAULT NULL, `name` varchar(40) DEFAULT NULL, date_of_hire date NULL DEFAULT NULL, termination_date date NULL DEFAULT NULL, date_of_birth date NULL DEFAULT NULL, department bigint(20) DEFAULT NULL, designation bigint(20) DEFAULT NULL, `location` varchar(50) DEFAULT NULL, `source_of_hire` varchar(50) DEFAULT NULL, `type` varchar(20) DEFAULT NULL, `status` varchar(10) DEFAULT NULL, reporting_to bigint(20) DEFAULT NULL, pay_rate decimal(20,2) unsigned DEFAULT NULL, pay_type varchar(20) DEFAULT NULL, mobile varchar(50) DEFAULT NULL, shift_id bigint(20) DEFAULT NULL, deleted_at datetime DEFAULT NULL, PRIMARY KEY (ID), KEY user_id (user_id), KEY designation (designation), KEY department (department), KEY `status` (`status`) ) ENGINE
Safe to delete?
If you have uninstalled HR Press Lite, this table is generally safe to remove. However, always back up your database first.
Note: Some plugins share tables or are dependencies of other plugins. Verify nothing else depends on this table before dropping it.
How to remove this table
DROP TABLE IF EXISTS `wp_hrp_employees`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from HR Press Lite