wp_lhr_log
StaticA logging table that records activity, events, or audit history.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT UNSIGNED | NO |
| url | TEXT | YES |
| request_args | MEDIUMTEXT | YES |
| response | MEDIUMTEXT | YES |
| runtime | VARCHAR(64) | YES |
| date_added | DATETIME | YES |
CREATE TABLE Statement
CREATE TABLE wp_lhr_log ( id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, url TEXT, request_args MEDIUMTEXT, response MEDIUMTEXT, runtime VARCHAR(64), date_added DATETIME, PRIMARY KEY (id) ) $charset_collate;"; require_once( ABSPATH . 'wp-admin/includes/upgrade.php' );
Safe to delete?
If you have uninstalled Log HTTP Requests, 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_lhr_log`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.