wp_avalon23_cache

Static

A cache table that stores temporary computed or fetched data.

Column Definitions

ColumnTypeNullable
mkeyvarchar(64)NO
filter_idint(11)NO
mvaluetextNO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS `wp_avalon23_cache` ( `mkey` varchar(64) NOT NULL, `filter_id` int(11) NOT NULL, `mvalue` text NOT NULL, KEY `mkey` (`mkey`), KEY `filter_id` (`filter_id`) ) DEFAULT CHARACTER SET %s COLLATE %s", $wpdb->charset, $wpdb->collate));

Safe to delete?

If you have uninstalled Avalon23 Products Filter for WooCommerce, 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_avalon23_cache`;

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

Other tables from Avalon23 Products Filter for WooCommerce