wp_semantic_analyses

Static

Stores semantic analyses data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idbigint(20) UNSIGNEDNO
post_idbigint(20) UNSIGNEDNO
phasevarchar(20)NO
statusvarchar(20)NO
content_analysislongtextYES
summarytextYES
citable_snippettextYES
llm_tagstextYES
author_credentialstextYES
audiencetextYES
compact_howtotextYES
summarieslongtextYES
llm_context_blocklongtextYES
llm_titletextYES
llm_descriptiontextYES
content_sectionslongtextYES
cleaned_contentlongtextYES
primary_topic_entityvarchar(255)YES
page_typevarchar(50)YES
primary_intentvarchar(255)YES
secondary_intentslongtextYES
user_stagevarchar(50)YES
difficultyvarchar(50)YES
entity_relationshipslongtextYES
external_job_idvarchar(255)YES
error_messagetextYES
started_atdatetimeYES
finished_atdatetimeYES
created_atdatetimeNO
updated_atdatetimeNO

CREATE TABLE Statement

CREATE TABLE wp_semantic_analyses ( id bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, post_id bigint(20) UNSIGNED NOT NULL, phase varchar(20) NOT NULL DEFAULT 'full', status varchar(20) NOT NULL DEFAULT 'pending', content_analysis longtext, summary text, citable_snippet text, llm_tags text, author_credentials text, audience text, compact_howto text, summaries longtext, llm_context_block longtext, llm_title text, llm_description text, content_sections longtext, cleaned_content longtext, primary_topic_entity varchar(255), page_type varchar(50), primary_intent varchar(255), secondary_intents longtext, user_stage varchar(50), difficulty varchar(50), entity_relationships longtext, external_job_id varchar(255), error_message text, started_at datetime, finished_at datetime, created_at datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, updated_at datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (id), KEY post_id (post_id), KEY status (status) ) $charset;" );

Safe to delete?

If you have uninstalled AI Data Layer – AI SEO & AI Search Optimization: llms.txt, MCP Server, Schema (AEO/GEO), 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_semantic_analyses`;

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

Other tables from AI Data Layer – AI SEO & AI Search Optimization: llms.txt, MCP Server, Schema (AEO/GEO)