wp_floatyfaq_items
StaticStores floatyfaq items data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint(20) unsigned | NO |
| category_id | bigint(20) unsigned | NO |
| question | text | NO |
| answer | longtext | NO |
| url | varchar(500) | YES |
| sort_order | int(11) | NO |
| views | int(11) | NO |
| active | tinyint(1) | NO |
| scheduled_start | datetime | YES |
| scheduled_end | datetime | YES |
| created_at | datetime | NO |
| updated_at | datetime | NO |
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