wp_sgs_log_visitors

Static

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

Column Definitions

ColumnTypeNullable
🔑idint(11)NO
ipvarchar(55)NO
user_idint(11)NO
blockint(11)NO
blocked_onint(11)NO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS `wp_sgs_log_visitors` ( `id` int(11) NOT NULL AUTO_INCREMENT, `ip` varchar(55) NOT NULL DEFAULT '127.0.0.1', `user_id` int(11) NOT NULL DEFAULT 0, `block` int(11) NOT NULL DEFAULT 0, `blocked_on` int(11) NOT NULL DEFAULT 0, PRIMARY KEY (`id`), INDEX `ip_index` (`ip`), INDEX `block_user_index` (`block`, `user_id`) ) ENGINE

Safe to delete?

If you have uninstalled Security Optimizer – The All-In-One Protection Plugin, 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_sgs_log_visitors`;

Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.

Other tables from Security Optimizer – The All-In-One Protection Plugin