wp_cutelinks

Static

Stores cutelinks data created by this plugin.

CREATE TABLE Statement

CREATE TABLE `wp_cutelinks` (\n  `id` int NOT NULL AUTO_INCREMENT,\n  `cute_slug` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `affiliate_url` text COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `click_count` int DEFAULT '0',\n  `follow_type` enum('nofollow','dofollow') COLLATE utf8mb4_unicode_520_ci DEFAULT 'nofollow',\n  `redirect_type` enum('301','302','307') COLLATE utf8mb4_unicode_520_ci DEFAULT '301',\n  PRIMARY KEY (`id`),\n  UNIQUE KEY `cute_slug` (`cute_slug`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci

Safe to delete?

If you have uninstalled Cute Links – Free Link Branding and Link Cloaker Plugin with Click Tracking, 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_cutelinks`;

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