wp_floatyfaq_categories
StaticStores floatyfaq categories data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint(20) unsigned | NO |
| name | varchar(255) | NO |
| slug | varchar(255) | NO |
| description | text | YES |
| sort_order | int(11) | NO |
| created_at | datetime | NO |
CREATE TABLE Statement
CREATE TABLE `wp_floatyfaq_categories` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(255) NOT NULL, `slug` varchar(255) NOT NULL, `description` text, `sort_order` int(11) NOT NULL DEFAULT 0, `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`), UNIQUE KEY `slug` (`slug`), KEY `sort_order` (`sort_order`) ) $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_categories`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from FloatyFAQ