wp_clud_logs

Static

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

Column Definitions

ColumnTypeNullable
🔑idBIGINT(20) UNSIGNEDNO
event_typeVARCHAR(50)NO
user_idBIGINT(20) UNSIGNEDYES
usernameVARCHAR(200)YES
ip_addressVARCHAR(45)YES
user_agentTEXTYES
detailsTEXTYES
created_atDATETIMENO
ip_addressVARCHAR(45)NO
reasonVARCHAR(200)YES
blocked_untilDATETIMEYES
is_permanentTINYINT(1)YES
attemptsINT(11)YES
created_atDATETIMENO
file_pathVARCHAR(500)NO
file_hashVARCHAR(64)NO
file_sizeBIGINT(20)YES
last_checkedDATETIMENO

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