wp_debug_logpress
StaticA logging table that records activity, events, or audit history.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑log_id | bigint(20) unsigned | NO |
| log_on | datetime | NO |
| log_ip | varchar(255) | NO |
| log_page | varchar(255) | NO |
CREATE TABLE Statement
CREATE TABLE `debug_logpress` ( `log_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `log_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00', `log_ip` varchar(255) NOT NULL DEFAULT '', `log_page` varchar(255) NOT NULL DEFAULT '', PRIMARY KEY (`log_id`) ) ENGINE
Safe to delete?
If you have uninstalled LogPress, 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_debug_logpress`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.