wp_floatyfaq_ratings

Static

Stores floatyfaq ratings data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idbigint(20) unsignedNO
faq_idbigint(20) unsignedNO
ratingtinyint(1)NO
user_ipvarchar(45)YES
created_atdatetimeNO

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