wp_full_text_search_posts
StaticStores full text search posts data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑ID | bigint(20) unsigned | NO |
| post_type | varchar(20) | NO |
| post_modified | datetime | NO |
| post_title | text | NO |
| post_content | longtext | NO |
| post_excerpt | text | NO |
| status | tinyint(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} ) ENGINESafe 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.