wp_ezcache_webp_images

Static

A cache table that stores temporary computed or fetched data.

Column Definitions

ColumnTypeNullable
🔑idbigint(10) UNSIGNEDNO
uidvarchar(191)NO
urltext(0)NO
webp_urltext(0)NO
statusenum('pending', 'completed', 'failed')NO
created_atdatetime(0)NO
updated_atdatetime(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.