wp_fcwg_widgets

Static

Stores fcwg widgets data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idBIGINT UNSIGNEDNO
nameVARCHAR(191)NO
statusENUM('active','inactive','draft')NO
channelsLONGTEXTYES
settingsLONGTEXTYES
prioritySMALLINTNO
total_clicksBIGINTNO
created_atDATETIMENO
updated_atDATETIMENO

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