wp_floatyfaq_settings
StaticStores floatyfaq settings data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint(20) unsigned | NO |
| setting_key | varchar(100) | NO |
| setting_value | longtext | YES |
CREATE TABLE Statement
CREATE TABLE `wp_floatyfaq_settings` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `setting_key` varchar(100) NOT NULL, `setting_value` longtext, PRIMARY KEY (`id`), UNIQUE KEY `setting_key` (`setting_key`) ) $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_settings`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from FloatyFAQ