wp_emplmasy_employee_sales
StaticStores emplmasy employee sales data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint(20) | NO |
| user_id | bigint(20) | NO |
| date | date | NO |
| amount | decimal(10,2) | NO |
| description | text | NO |
| created_at | datetime | YES |
| updated_at | datetime | YES |
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