wp_chat_history

Static

Stores chat history data created by this plugin.

CREATE TABLE Statement

CREATE TABLE chat_history ( * id BIGINT UNSIGNED AUTO_INCREMENT PRIMARY KEY, * thread_id VARCHAR(255) NOT NULL, * messages LONGTEXT NOT NULL, * created_at DATETIME DEFAULT CURRENT_TIMESTAMP, * updated_at DATETIME DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, * * UNIQUE KEY uk_thread_id (thread_id), * INDEX idx_thread_id (thread_id) * );

Safe to delete?

If you have uninstalled Smart Sense – AI Knowledge Base for Posts, Pages, and CPTs, 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_chat_history`;

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

Other tables from Smart Sense – AI Knowledge Base for Posts, Pages, and CPTs