wp_cu_log
StaticA logging table that records activity, events, or audit history.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | INT UNSIGNED | NO |
| user_id | BIGINT UNSIGNED | NO |
| action | ENUM('create','delete','group_toggle','group_activate','group_deactivate','killswitch') | NO |
| rule_id | INT UNSIGNED | YES |
| snapshot | TEXT | YES |
| created_at | DATETIME | NO |
CREATE TABLE Statement
CREATE TABLE wp_cu_log ( id INT UNSIGNED NOT NULL AUTO_INCREMENT, user_id BIGINT UNSIGNED NOT NULL DEFAULT 0, action ENUM('create','delete','group_toggle','group_activate','group_deactivate','killswitch') NOT NULL, rule_id INT UNSIGNED DEFAULT NULL, snapshot TEXT DEFAULT NULL, created_at DATETIME NOT NULL, PRIMARY KEY (id), KEY idx_action (action), KEY idx_created (created_at) ) ENGINESafe to delete?
If you have uninstalled Code Unloader, 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_cu_log`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Code Unloader