wp_ecl_lite_queue

Static

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

CREATE TABLE Statement

CREATE TABLE `wp_ecl_lite_queue` (\n  `id` bigint unsigned NOT NULL AUTO_INCREMENT,\n  `post_id` bigint unsigned NOT NULL,\n  `action` varchar(50) COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `priority` int DEFAULT '5',\n  `status` varchar(20) COLLATE utf8mb4_unicode_520_ci DEFAULT 'pending',\n  `attempts` int DEFAULT '0',\n  `error_message` text COLLATE utf8mb4_unicode_520_ci,\n  `started_at` datetime DEFAULT NULL,\n  `created_at` datetime DEFAULT CURRENT_TIMESTAMP,\n  `updated_at` datetime DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,\n  PRIMARY KEY (`id`),\n  KEY `post_id` (`post_id`),\n  KEY `status` (`status`),\n  KEY `priority` (`priority`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci

Safe to delete?

If you have uninstalled Easy Content Linker Lite, 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_ecl_lite_queue`;

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

Other tables from Easy Content Linker Lite