wp_floatyfaq_ratings
StaticStores floatyfaq ratings data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint(20) unsigned | NO |
| faq_id | bigint(20) unsigned | NO |
| rating | tinyint(1) | NO |
| user_ip | varchar(45) | YES |
| created_at | datetime | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS `wp_floatyfaq_ratings` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `faq_id` bigint(20) unsigned NOT NULL, `rating` tinyint(1) NOT NULL, `user_ip` varchar(45) DEFAULT NULL, `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`), KEY `faq_id` (`faq_id`), KEY `created_at` (`created_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_ratings`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from FloatyFAQ