wp_kognetiks_ai_summaries
StaticStores kognetiks ai summaries data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | mediumint(9) | NO |
| post_id | mediumint(9) | NO |
| ai_summary | text | NO |
| post_modified | datetime | NO |
CREATE TABLE Statement
CREATE TABLE wp_kognetiks_ai_summaries ( id mediumint(9) NOT NULL AUTO_INCREMENT, post_id mediumint(9) NOT NULL, ai_summary text NOT NULL, post_modified datetime NOT NULL, PRIMARY KEY (id), UNIQUE KEY unique_post_id (post_id) ) $charset_collate;"; require_once ABSPATH . 'wp-admin/includes/upgrade.php'; dbDelta( $sql );
Safe to delete?
If you have uninstalled Kognetiks AI Summaries, 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_kognetiks_ai_summaries`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.