wp_floatyfaq_settings

Static

Stores floatyfaq settings data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idbigint(20) unsignedNO
setting_keyvarchar(100)NO
setting_valuelongtextYES

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