wp_floatyfaq_items

Static

Stores floatyfaq items data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idbigint(20) unsignedNO
category_idbigint(20) unsignedNO
questiontextNO
answerlongtextNO
urlvarchar(500)YES
sort_orderint(11)NO
viewsint(11)NO
activetinyint(1)NO
scheduled_startdatetimeYES
scheduled_enddatetimeYES
created_atdatetimeNO
updated_atdatetimeNO

CREATE TABLE Statement

CREATE TABLE `wp_floatyfaq_items` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `category_id` bigint(20) unsigned NOT NULL, `question` text NOT NULL, `answer` longtext NOT NULL, `url` varchar(500) DEFAULT NULL, `sort_order` int(11) NOT NULL DEFAULT 0, `views` int(11) NOT NULL DEFAULT 0, `active` tinyint(1) NOT NULL DEFAULT 1, `scheduled_start` datetime DEFAULT NULL, `scheduled_end` datetime DEFAULT NULL, `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`), KEY `category_id` (`category_id`), KEY `sort_order` (`sort_order`), KEY `active` (`active`), KEY `scheduled` (`scheduled_start`, `scheduled_end`) ) $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_items`;

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

Other tables from FloatyFAQ