wp_floatyfaq_cache
StaticA cache table that stores temporary computed or fetched data.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint(20) unsigned | NO |
| cache_key | varchar(255) | NO |
| cache_value | longtext | NO |
| expires_at | datetime | NO |
| created_at | datetime | NO |
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