wp_ezcache_webp_images
StaticA cache table that stores temporary computed or fetched data.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint(10) UNSIGNED | NO |
| uid | varchar(191) | NO |
| url | text(0) | NO |
| webp_url | text(0) | NO |
| status | enum('pending', 'completed', 'failed') | NO |
| created_at | datetime(0) | NO |
| updated_at | datetime(0) | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS `wp_ezcache_webp_images` ( `id` bigint(10) UNSIGNED NOT NULL AUTO_INCREMENT, `uid` varchar(191) NOT NULL DEFAULT '', `url` text(0) NOT NULL DEFAULT '', `webp_url` text(0) NOT NULL DEFAULT '', `status` enum('pending', 'completed', 'failed') NOT NULL DEFAULT 'pending', `created_at` datetime(0) NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` datetime(0) NOT NULL DEFAULT '0000-00-00 00:00:00', PRIMARY KEY (`id`), UNIQUE INDEX (`uid`) USING BTREE ) ". ( self::$collate ) );Safe to delete?
If you have uninstalled ezCache, 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_ezcache_webp_images`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.