wp_floatyfaq_cache

Static

A cache table that stores temporary computed or fetched data.

Column Definitions

ColumnTypeNullable
🔑idbigint(20) unsignedNO
cache_keyvarchar(255)NO
cache_valuelongtextNO
expires_atdatetimeNO
created_atdatetimeNO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS `wp_floatyfaq_cache` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `cache_key` varchar(255) NOT NULL, `cache_value` longtext NOT NULL, `expires_at` datetime NOT NULL, `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`), UNIQUE KEY `cache_key` (`cache_key`), KEY `expires_at` (`expires_at`) ) $charset ");

Safe to delete?

If you have uninstalled FloatyFAQ, 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_floatyfaq_cache`;

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

Other tables from FloatyFAQ