wp_hrp_employees

Static

Stores hrp employees data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑IDbigint(20) UNSIGNEDNO
user_idbigint(20)YES
photo_idbigint(20)YES
employee_idvarchar(20)YES
namevarchar(40)YES
date_of_hiredateYES
termination_datedateYES
date_of_birthdateYES
departmentbigint(20)YES
designationbigint(20)YES
locationvarchar(50)YES
source_of_hirevarchar(50)YES
typevarchar(20)YES
statusvarchar(10)YES
reporting_tobigint(20)YES
pay_ratedecimal(20,2) unsignedYES
pay_typevarchar(20)YES
mobilevarchar(50)YES
shift_idbigint(20)YES
deleted_atdatetimeYES

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