wp_semantic_suggested_schema

Static

Stores semantic suggested schema data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idbigint(20) UNSIGNEDNO
analysis_idbigint(20) UNSIGNEDNO
post_idbigint(20) UNSIGNEDNO
entityvarchar(255)YES
typevarchar(100)YES
detection_methodvarchar(100)YES
use_in_schematinyint(1)YES
schema_propertieslongtextYES
reasoningtextYES
approval_statusvarchar(20)NO
created_atdatetimeNO

CREATE TABLE Statement

CREATE TABLE wp_semantic_suggested_schema ( id bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, analysis_id bigint(20) UNSIGNED NOT NULL, post_id bigint(20) UNSIGNED NOT NULL, entity varchar(255), type varchar(100), detection_method varchar(100), use_in_schema tinyint(1) DEFAULT 1, schema_properties longtext, reasoning text, approval_status varchar(20) NOT NULL DEFAULT 'pending', created_at datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id), KEY analysis_id (analysis_id), KEY post_id (post_id) ) $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_suggested_schema`;

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)