wp_content_craft_ai_generations

Verified

Stores content craft ai generations data created by this plugin.

CREATE TABLE Statement

CREATE TABLE `wp_content_craft_ai_generations` (\n  `id` bigint NOT NULL AUTO_INCREMENT,\n  `queue_id` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `title` text COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `type` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'article',\n  `status` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'pending',\n  `word_count` int DEFAULT NULL,\n  `created_at` datetime NOT NULL,\n  `completed_at` datetime DEFAULT NULL,\n  `user_id` bigint NOT NULL,\n  `category` bigint DEFAULT NULL,\n  `post_id` bigint DEFAULT NULL,\n  `parameters` longtext COLLATE utf8mb4_unicode_520_ci,\n  `scheduled_time` datetime DEFAULT NULL,\n  `is_scheduled` tinyint(1) DEFAULT '0',\n  PRIMARY KEY (`id`),\n  UNIQUE KEY `queue_id` (`queue_id`),\n  KEY `status` (`status`),\n  KEY `type` (`type`),\n  KEY `scheduled_time` (`scheduled_time`),\n  KEY `is_scheduled` (`is_scheduled`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci

Safe to delete?

If you have uninstalled Content Craft AI: SEO & AI Article Generator, 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_content_craft_ai_generations`;

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

Other tables from Content Craft AI: SEO & AI Article Generator