wp_clud_logs
StaticA logging table that records activity, events, or audit history.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT(20) UNSIGNED | NO |
| event_type | VARCHAR(50) | NO |
| user_id | BIGINT(20) UNSIGNED | YES |
| username | VARCHAR(200) | YES |
| ip_address | VARCHAR(45) | YES |
| user_agent | TEXT | YES |
| details | TEXT | YES |
| created_at | DATETIME | NO |
| ip_address | VARCHAR(45) | NO |
| reason | VARCHAR(200) | YES |
| blocked_until | DATETIME | YES |
| is_permanent | TINYINT(1) | YES |
| attempts | INT(11) | YES |
| created_at | DATETIME | NO |
| file_path | VARCHAR(500) | NO |
| file_hash | VARCHAR(64) | NO |
| file_size | BIGINT(20) | YES |
| last_checked | DATETIME | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_clud_logs ( id BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT, event_type VARCHAR(50) NOT NULL, user_id BIGINT(20) UNSIGNED DEFAULT 0, username VARCHAR(200) DEFAULT '', ip_address VARCHAR(45) DEFAULT '', user_agent TEXT DEFAULT '', details TEXT DEFAULT '', created_at DATETIME NOT NULL, PRIMARY KEY (id), KEY event_type (event_type), KEY ip_address (ip_address), KEY created_at (created_at) ) $charset; CREATE TABLE IF NOT EXISTS wp_clud_blocked_ips ( id BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT, ip_address VARCHAR(45) NOT NULL, reason VARCHAR(200) DEFAULT '', blocked_until DATETIME DEFAULT NULL, is_permanent TINYINT(1) DEFAULT 0, attempts INT(11) DEFAULT 0, created_at DATETIME NOT NULL, PRIMARY KEY (id), UNIQUE KEY ip_address (ip_address) ) $charset; CREATE TABLE IF NOT EXISTS wp_clud_file_hashes ( id BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT, file_path VARCHAR(500) NOT NULL, file_hash VARCHAR(64) NOT NULL, file_size BIGINT(20) DEFAULT 0, last_checked DATETIME NOT NULL, PRIMARY KEY (id), UNIQUE KEY file_path (file_path(255)) ) $charset;"; require_once ABSPATH . 'wp-admin/includes/upgrade.php'; dbDelta( $sql );
Safe to delete?
If you have uninstalled Dotsquares Custom Login URL & Security Suite, 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_clud_logs`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Dotsquares Custom Login URL & Security Suite