wp_fastflow_settings
StaticStores fastflow settings data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑ID | int(10) unsigned | NO |
| settings_for | text | NO |
| settings_data | text | NO |
| extra_data | text | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_fastflow_settings ( ID int(10) unsigned NOT NULL AUTO_INCREMENT, settings_for text NOT NULL, settings_data text NOT NULL, extra_data text NOT NULL, PRIMARY KEY (ID) );
Safe to delete?
If you have uninstalled Fast Flow, 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_fastflow_settings`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Fast Flow