wp_docubot_ai_secureweb_embeddings
StaticStores docubot ai secureweb embeddings data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT UNSIGNED | NO |
| filename | VARCHAR(255) | NO |
| content | LONGTEXT | NO |
| embedding | LONGTEXT | NO |
CREATE TABLE Statement
CREATE TABLE wp_docubot_ai_secureweb_embeddings ( id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, filename VARCHAR(255) NOT NULL DEFAULT '', content LONGTEXT NOT NULL, embedding LONGTEXT NOT NULL, PRIMARY KEY (id), KEY filename (filename(191)) ) {$charset};"; require_once ABSPATH . 'wp-admin/includes/upgrade.php'; dbDelta( $sql );Safe to delete?
If you have uninstalled DocuBot AI by secureweb, 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_docubot_ai_secureweb_embeddings`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.