wp_emplmasy_employee_sales

Static

Stores emplmasy employee sales data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idbigint(20)NO
user_idbigint(20)NO
datedateNO
amountdecimal(10,2)NO
descriptiontextNO
created_atdatetimeYES
updated_atdatetimeYES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_emplmasy_employee_sales ( id bigint(20) NOT NULL AUTO_INCREMENT, user_id bigint(20) NOT NULL, date date NOT NULL, amount decimal(10,2) NOT NULL, description text NOT NULL, created_at datetime DEFAULT CURRENT_TIMESTAMP, updated_at datetime DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (id), KEY user_id (user_id), KEY date (date) ) $charset_collate;"; dbDelta($sql);

Safe to delete?

If you have uninstalled Employee Management System, 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_emplmasy_employee_sales`;

Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.

Other tables from Employee Management System