wp_iron_security_logs
VerifiedA logging table that records activity, events, or audit history.
CREATE TABLE Statement
CREATE TABLE `wp_iron_security_logs` (\n `id` bigint NOT NULL AUTO_INCREMENT,\n `log_type` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL,\n `user_id` bigint DEFAULT NULL,\n `username` varchar(60) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n `ip_address` varchar(45) COLLATE utf8mb4_unicode_520_ci NOT NULL,\n `message` text COLLATE utf8mb4_unicode_520_ci NOT NULL,\n `status` varchar(20) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n `date_created` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,\n `extra_data` longtext COLLATE utf8mb4_unicode_520_ci,\n PRIMARY KEY (`id`),\n KEY `log_type` (`log_type`),\n KEY `user_id` (`user_id`),\n KEY `status` (`status`),\n KEY `date_created` (`date_created`)\n) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci
Safe to delete?
If you have uninstalled Iron Security – WordPress Security 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_iron_security_logs`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Iron Security – WordPress Security Plugin