wp_kc_us_api_keys

Static

Stores kc us api keys data created by this plugin.

CREATE TABLE Statement

CREATE TABLE `wp_kc_us_api_keys` (\n  `id` bigint unsigned NOT NULL AUTO_INCREMENT,\n  `user_id` bigint unsigned NOT NULL,\n  `description` varchar(200) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n  `permissions` varchar(10) COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `consumer_key` char(64) COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `consumer_secret` char(43) COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `truncated_key` char(7) COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `last_access` datetime DEFAULT NULL,\n  `created_at` datetime DEFAULT NULL,\n  `created_by_id` int DEFAULT NULL,\n  `updated_at` datetime DEFAULT NULL,\n  `updated_by_id` int DEFAULT NULL,\n  PRIMARY KEY (`id`),\n  KEY `consumer_key` (`consumer_key`),\n  KEY `consumer_secret` (`consumer_secret`),\n  KEY `created_at` (`created_at`),\n  KEY `updated_at` (`updated_at`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci

Safe to delete?

If you have uninstalled URL Shortify – Simple and Easy URL Shortener, 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_kc_us_api_keys`;

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

Other tables from URL Shortify – Simple and Easy URL Shortener