wp_wpm_seo_articles_generator
StaticStores wpm seo articles generator data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | INTEGER | NO |
| post_id | INTEGER(10) | NO |
| category | INTEGER(10) | NO |
| article_name | VARCHAR(100) | NO |
| article_content | TEXT | NO |
| errors | TEXT | NO |
| date_posted | DATETIME | YES |
| timestamp | TIMESTAMP | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_wpm_seo_articles_generator ( id INTEGER NOT NULL AUTO_INCREMENT, post_id INTEGER(10) NOT NULL, category INTEGER(10) NOT NULL, article_name VARCHAR(100) NOT NULL, article_content TEXT NOT NULL, errors TEXT NOT NULL, date_posted DATETIME, timestamp TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id) ) $charset_collate;"; $wpdb->query( $sql );
Safe to delete?
If you have uninstalled AI Content Writer & Generator, 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_wpm_seo_articles_generator`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.