wp_sgs_log_visitors
StaticA logging table that records activity, events, or audit history.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int(11) | NO |
| ip | varchar(55) | NO |
| user_id | int(11) | NO |
| block | int(11) | NO |
| blocked_on | int(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