wp_forcefield_ips

Verified

Stores forcefield ips data created by this plugin.

CREATE TABLE Statement

CREATE TABLE `wp_forcefield_ips` (\n  `id` int unsigned NOT NULL AUTO_INCREMENT,\n  `ip` varchar(40) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',\n  `label` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',\n  `list` varchar(4) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT '',\n  `ip6` tinyint(1) NOT NULL DEFAULT '0',\n  `is_range` tinyint unsigned NOT NULL DEFAULT '0',\n  `transgressions` tinyint unsigned NOT NULL DEFAULT '0',\n  `last_access_at` int unsigned NOT NULL DEFAULT '0',\n  `created_at` int unsigned NOT NULL DEFAULT '0',\n  `deleted_at` int unsigned NOT NULL DEFAULT '0',\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci

Safe to delete?

If you have uninstalled ForceField, 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_forcefield_ips`;

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