wp_kc_uf_links
StaticStores kc uf links data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int(10) | NO |
| link | text | YES |
| host | varchar(255) | YES |
| uri | varchar(255) | YES |
| referer | varchar(255) | YES |
| is_robot | tinyint(1) | YES |
| user_agent | text | YES |
| os | varchar(255) | YES |
| device | varchar(255) | YES |
| browser_type | varchar(255) | YES |
| browser_version | varchar(255) | YES |
| visitor_id | varchar(25) | YES |
| country | varchar(50) | YES |
| ip | varchar(255) | YES |
| created_at | datetime | YES |
CREATE TABLE Statement
CREATE TABLE `wp_kc_uf_links` ( `id` int(10) NOT NULL AUTO_INCREMENT, `link` text DEFAULT NULL, `host` varchar(255) DEFAULT NULL, `uri` varchar(255) DEFAULT NULL, `referer` varchar(255) DEFAULT NULL, `is_robot` tinyint(1) DEFAULT 0, `user_agent` text DEFAULT NULL, `os` varchar(255) DEFAULT NULL, `device` varchar(255) DEFAULT NULL, `browser_type` varchar(255) DEFAULT NULL, `browser_version` varchar(255) DEFAULT NULL, `visitor_id` varchar(25) default NULL, `country` varchar(50) DEFAULT NULL, `ip` varchar(255) DEFAULT NULL, `created_at` datetime DEFAULT NULL, PRIMARY KEY (id), KEY browser_type (browser_type(191)), KEY browser_version (browser_version(191)), KEY os (os(191)), KEY device (device(191)), KEY country (country(50)), KEY referer (referer(191)), KEY host (host(191)), KEY uri (uri(191)), KEY is_robot (is_robot), KEY visitor_id (visitor_id), KEY created_at (created_at) ) $collate; "; return $tables; } /** * @param string $collate * * @return string * * @since 1.0.0 */ private static function get_schema( $collate = '' ) { $tables = self::get_101_schema( $collate );Safe to delete?
If you have uninstalled Utilitify – Supercharge Your WordPress Site With Powerpack WordPress Utilities, 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_uf_links`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.