wp_fcwg_widgets
StaticStores fcwg widgets data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT UNSIGNED | NO |
| name | VARCHAR(191) | NO |
| status | ENUM('active','inactive','draft') | NO |
| channels | LONGTEXT | YES |
| settings | LONGTEXT | YES |
| priority | SMALLINT | NO |
| total_clicks | BIGINT | NO |
| created_at | DATETIME | NO |
| updated_at | DATETIME | NO |
CREATE TABLE Statement
CREATE TABLE wp_fcwg_widgets ( id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, name VARCHAR(191) NOT NULL DEFAULT 'My Float', status ENUM('active','inactive','draft') NOT NULL DEFAULT 'draft', channels LONGTEXT, settings LONGTEXT, priority SMALLINT NOT NULL DEFAULT 10, total_clicks BIGINT NOT NULL DEFAULT 0, created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, updated_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (id), KEY status (status), KEY priority (priority) ) $c;" );Safe to delete?
If you have uninstalled PB Floats Contact Widget, 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_fcwg_widgets`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from PB Floats Contact Widget