wp_log

Verified

Stores log data created by this plugin.

CREATE TABLE Statement

CREATE TABLE `wp_log` (\n  `site_id` bigint unsigned NOT NULL DEFAULT '0',\n  `user_id` bigint unsigned NOT NULL DEFAULT '0',\n  `ctime` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `ip` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `agent` text COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `path` text COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `query` longtext COLLATE utf8mb4_unicode_520_ci,\n  KEY `site` (`site_id`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci

Safe to delete?

If you have uninstalled WPLog, 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_log`;

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