wp_floatyfaq_translations

Static

Stores floatyfaq translations data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idbigint(20) unsignedNO
faq_idbigint(20) unsignedNO
languagevarchar(10)NO
questiontextNO
answerlongtextNO
created_atdatetimeNO
updated_atdatetimeNO

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