wp_allsi_bulk_posts

Static

Stores allsi bulk posts data created by this plugin.

CREATE TABLE Statement

CREATE TABLE `wp_ALLSI_bulk_posts` (\n  `id` bigint unsigned NOT NULL AUTO_INCREMENT,\n  `job_id` bigint unsigned NOT NULL,\n  `post_id` bigint unsigned NOT NULL,\n  `post_type` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `post_title` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `status` enum('pending','processing','completed','failed','skipped') COLLATE utf8mb4_unicode_520_ci DEFAULT 'pending',\n  `retry_count` tinyint unsigned DEFAULT '0',\n  `featured_image_id` bigint unsigned DEFAULT NULL,\n  `featured_image_status` enum('pending','completed','failed','skipped') COLLATE utf8mb4_unicode_520_ci DEFAULT 'pending',\n  `additional_images` text COLLATE utf8mb4_unicode_520_ci,\n  `error_message` text COLLATE utf8mb4_unicode_520_ci,\n  `search_keyword` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n  `image_source` varchar(100) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n  `processed_at` datetime DEFAULT NULL,\n  `created_at` datetime DEFAULT CURRENT_TIMESTAMP,\n  PRIMARY KEY (`id`),\n  KEY `job_id` (`job_id`),\n  KEY `post_id` (`post_id`),\n  KEY `status` (`status`),\n  CONSTRAINT `wp_ALLSI_bulk_posts_ibfk_1` FOREIGN KEY (`job_id`) REFERENCES `wp_ALLSI_bulk_jobs` (`id`) ON DELETE CASCADE\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci

Safe to delete?

If you have uninstalled All Sources Images, 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_allsi_bulk_posts`;

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

Other tables from All Sources Images