wp_freshrank_drafts

Static

Stores freshrank drafts data created by this plugin.

CREATE TABLE Statement

CREATE TABLE `wp_freshrank_drafts` (\n  `id` bigint unsigned NOT NULL AUTO_INCREMENT,\n  `original_post_id` bigint unsigned NOT NULL,\n  `draft_post_id` bigint unsigned NOT NULL,\n  `analysis_id` bigint unsigned DEFAULT NULL,\n  `status` varchar(20) COLLATE utf8mb4_unicode_520_ci DEFAULT 'pending',\n  `tokens_used` int DEFAULT '0',\n  `prompt_tokens` int DEFAULT '0',\n  `completion_tokens` int DEFAULT '0',\n  `model_used` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n  `created_at` datetime DEFAULT CURRENT_TIMESTAMP,\n  `updated_at` datetime DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,\n  PRIMARY KEY (`id`),\n  UNIQUE KEY `draft_post_id` (`draft_post_id`),\n  KEY `original_post_id` (`original_post_id`),\n  KEY `status` (`status`),\n  KEY `analysis_id` (`analysis_id`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci

Safe to delete?

If you have uninstalled FreshRank – Instant Feedback for Better Content, 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_freshrank_drafts`;

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

Other tables from FreshRank – Instant Feedback for Better Content