wp_crystal_ball_insight
StaticStores crystal ball insight data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑histid | int(11) | NO |
| user_caps | varchar(70) | NO |
| action | varchar(255) | NO |
| object_type | varchar(255) | NO |
| object_subtype | varchar(255) | NO |
| object_name | varchar(255) | NO |
| object_id | int(11) | NO |
| user_id | int(11) | NO |
| hist_ip | varchar(55) | NO |
| hist_time | int(11) | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS `wp_crystal_ball_insight` ( `histid` int(11) NOT NULL AUTO_INCREMENT, `user_caps` varchar(70) NOT NULL DEFAULT 'guest', `action` varchar(255) NOT NULL, `object_type` varchar(255) NOT NULL, `object_subtype` varchar(255) NOT NULL DEFAULT '', `object_name` varchar(255) NOT NULL, `object_id` int(11) NOT NULL DEFAULT '0', `user_id` int(11) NOT NULL DEFAULT '0', `hist_ip` varchar(55) NOT NULL DEFAULT '127.0.0.1', `hist_time` int(11) NOT NULL DEFAULT '0', PRIMARY KEY (`histid`) ) ENGINE
Safe to delete?
If you have uninstalled Crystal Ball Insights, 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_crystal_ball_insight`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.