wp_allsi_bulk_jobs

Static

A job queue table for managing background tasks and scheduled operations.

CREATE TABLE Statement

CREATE TABLE `wp_ALLSI_bulk_jobs` (\n  `id` bigint unsigned NOT NULL AUTO_INCREMENT,\n  `job_name` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `job_status` enum('pending','processing','paused','completed','failed','cancelled') COLLATE utf8mb4_unicode_520_ci DEFAULT 'pending',\n  `total_posts` int unsigned DEFAULT '0',\n  `processed_posts` int unsigned DEFAULT '0',\n  `successful_posts` int unsigned DEFAULT '0',\n  `failed_posts` int unsigned DEFAULT '0',\n  `images_per_post` int unsigned DEFAULT '1',\n  `selection_mode` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT 'custom',\n  `post_types` text COLLATE utf8mb4_unicode_520_ci,\n  `settings` text COLLATE utf8mb4_unicode_520_ci,\n  `created_at` datetime DEFAULT CURRENT_TIMESTAMP,\n  `started_at` datetime DEFAULT NULL,\n  `completed_at` datetime DEFAULT NULL,\n  `updated_at` datetime DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,\n  `created_by` bigint unsigned DEFAULT NULL,\n  PRIMARY KEY (`id`),\n  KEY `job_status` (`job_status`),\n  KEY `created_at` (`created_at`)\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_jobs`;

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

Other tables from All Sources Images