wp_floatyfaq_analytics

Static

Stores analytics or statistics data.

Column Definitions

ColumnTypeNullable
🔑idbigint(20) unsignedNO
faq_idbigint(20) unsignedNO
action_typevarchar(50)NO
created_atdatetimeNO

CREATE TABLE Statement

CREATE TABLE `wp_floatyfaq_analytics` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `faq_id` bigint(20) unsigned NOT NULL, `action_type` varchar(50) NOT 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_analytics`;

Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.

Other tables from FloatyFAQ