wp_im_staff

Static

Stores im staff data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idBIGINT UNSIGNEDNO
wp_user_idBIGINT UNSIGNEDYES
nameVARCHAR(120)NO
roleVARCHAR(40)NO
emailVARCHAR(120)NO
phoneVARCHAR(30)YES
activeTINYINT(1)NO
created_atDATETIMENO

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