wp_floatyfaq_translations
StaticStores floatyfaq translations data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint(20) unsigned | NO |
| faq_id | bigint(20) unsigned | NO |
| language | varchar(10) | NO |
| question | text | NO |
| answer | longtext | NO |
| created_at | datetime | NO |
| updated_at | datetime | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS `wp_floatyfaq_translations` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `faq_id` bigint(20) unsigned NOT NULL, `language` varchar(10) NOT NULL, `question` text NOT NULL, `answer` longtext NOT NULL, `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`id`), UNIQUE KEY `faq_language` (`faq_id`, `language`), KEY `language` (`language`) ) $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_translations`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from FloatyFAQ