wp_full_text_search_posts

Static

Stores full text search posts data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑IDbigint(20) unsignedNO
post_typevarchar(20)NO
post_modifieddatetimeNO
post_titletextNO
post_contentlongtextNO
post_excerpttextNO
statustinyint(1)NO

CREATE TABLE Statement

CREATE TABLE wp_full_text_search_posts ( ID bigint(20) unsigned NOT NULL auto_increment, post_type varchar(20) NOT NULL default 'post', post_modified datetime NOT NULL default CURRENT_TIMESTAMP, post_title text NOT NULL, post_content longtext NOT NULL, post_excerpt text NOT NULL, keywords longtext NOT NULL, status tinyint(1) NOT NULL default '0', PRIMARY KEY (ID), {$db_index} ) ENGINE

Safe to delete?

If you have uninstalled Full-Text Search, 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_full_text_search_posts`;

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