wp_wpm_seo_articles_generator

Static

Stores wpm seo articles generator data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idINTEGERNO
post_idINTEGER(10)NO
categoryINTEGER(10)NO
article_nameVARCHAR(100)NO
article_contentTEXTNO
errorsTEXTNO
date_postedDATETIMEYES
timestampTIMESTAMPNO

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.