wp_kc_uf_links

Static

Stores kc uf links data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idint(10)NO
linktextYES
hostvarchar(255)YES
urivarchar(255)YES
referervarchar(255)YES
is_robottinyint(1)YES
user_agenttextYES
osvarchar(255)YES
devicevarchar(255)YES
browser_typevarchar(255)YES
browser_versionvarchar(255)YES
visitor_idvarchar(25)YES
countryvarchar(50)YES
ipvarchar(255)YES
created_atdatetimeYES

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.