wp_cu_log

Static

A logging table that records activity, events, or audit history.

Column Definitions

ColumnTypeNullable
🔑idINT UNSIGNEDNO
user_idBIGINT UNSIGNEDNO
actionENUM('create','delete','group_toggle','group_activate','group_deactivate','killswitch')NO
rule_idINT UNSIGNEDYES
snapshotTEXTYES
created_atDATETIMENO

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) ) ENGINE

Safe 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