wp_autoseo_articles

Static

Stores autoseo articles data created by this plugin.

CREATE TABLE Statement

CREATE TABLE `wp_autoseo_articles` (\n  `id` mediumint NOT NULL AUTO_INCREMENT,\n  `autoseo_id` varchar(100) COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `post_id` bigint unsigned DEFAULT NULL,\n  `title` text COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `content` longtext COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `excerpt` text COLLATE utf8mb4_unicode_520_ci,\n  `keywords` text COLLATE utf8mb4_unicode_520_ci,\n  `meta_description` varchar(320) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n  `meta_keywords` varchar(500) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n  `wordpress_tags` varchar(500) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n  `featured_image_url` text COLLATE utf8mb4_unicode_520_ci,\n  `hero_image_url` text COLLATE utf8mb4_unicode_520_ci,\n  `infographic_html` longtext COLLATE utf8mb4_unicode_520_ci,\n  `infographic_image_url` text COLLATE utf8mb4_unicode_520_ci,\n  `status` varchar(20) COLLATE utf8mb4_unicode_520_ci DEFAULT 'pending',\n  `synced_at` datetime DEFAULT CURRENT_TIMESTAMP,\n  `published_at` datetime DEFAULT NULL,\n  `content_markdown` longtext COLLATE utf8mb4_unicode_520_ci,\n  `intended_published_at` datetime DEFAULT NULL,\n  `faq_schema` longtext COLLATE utf8mb4_unicode_520_ci,\n  PRIMARY KEY (`id`),\n  UNIQUE KEY `autoseo_id` (`autoseo_id`),\n  KEY `post_id` (`post_id`),\n  KEY `status` (`status`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci

Safe to delete?

If you have uninstalled GetAutoSEO AI Tool, 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_autoseo_articles`;

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

Other tables from GetAutoSEO AI Tool