wp_im_staff
StaticStores im staff data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT UNSIGNED | NO |
| wp_user_id | BIGINT UNSIGNED | YES |
| name | VARCHAR(120) | NO |
| role | VARCHAR(40) | NO |
| VARCHAR(120) | NO | |
| phone | VARCHAR(30) | YES |
| active | TINYINT(1) | NO |
| created_at | DATETIME | NO |
CREATE TABLE Statement
CREATE TABLE wp_im_staff ( id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, wp_user_id BIGINT UNSIGNED DEFAULT 0, name VARCHAR(120) NOT NULL, role VARCHAR(40) NOT NULL DEFAULT 'staff', email VARCHAR(120) NOT NULL DEFAULT '', phone VARCHAR(30) DEFAULT '', active TINYINT(1) NOT NULL DEFAULT 1, created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id) ) $charset;" );
Safe to delete?
If you have uninstalled IntoMetrics Booking & CRM Light, 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_im_staff`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from IntoMetrics Booking & CRM Light