wp_fastflow_settings

Static

Stores fastflow settings data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑IDint(10) unsignedNO
settings_fortextNO
settings_datatextNO
extra_datatextNO

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