wp_lockr_keys

Verified

Stores lockr keys data created by this plugin.

CREATE TABLE Statement

CREATE TABLE `wp_lockr_keys` (\n  `id` mediumint NOT NULL AUTO_INCREMENT,\n  `time` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',\n  `key_name` tinytext COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `key_value` text COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `key_label` text COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `key_abstract` text COLLATE utf8mb4_unicode_520_ci,\n  `dev_abstract` text COLLATE utf8mb4_unicode_520_ci,\n  `auto_created` tinyint(1) DEFAULT NULL,\n  `option_override` text COLLATE utf8mb4_unicode_520_ci,\n  UNIQUE KEY `id` (`id`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci

Safe to delete?

If you have uninstalled Lockr, 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_lockr_keys`;

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