wp_fe_event_webhooks

Static

Stores fe event webhooks data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idBIGINT(20) UNSIGNEDNO
statusTINYINT(1)NO
nameVARCHAR(100)NO
user_idBIGINT(20) UNSIGNEDNO
urlVARCHAR(200)NO
secretCHAR(40)NO
retry_schemeVARCHAR(50)NO
topicVARCHAR(50)NO
pendingINTNO
deliveredINTNO
retriesINTNO
failedINTNO
failure_thresholdINTNO
last_successTIMESTAMPNO
last_retryTIMESTAMPNO
last_failureTIMESTAMPNO
date_createdTIMESTAMPNO

CREATE TABLE Statement

CREATE TABLE wp_fe_event_webhooks ( id BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT, status TINYINT(1) NOT NULL DEFAULT '0', name VARCHAR(100) NOT NULL DEFAULT '', user_id BIGINT(20) UNSIGNED NOT NULL, url VARCHAR(200) NOT NULL DEFAULT '', secret CHAR(40) NOT NULL DEFAULT '', retry_scheme VARCHAR(50) NOT NULL DEFAULT '', topic VARCHAR(50) NOT NULL DEFAULT '', pending INT NOT NULL DEFAULT '0', delivered INT NOT NULL DEFAULT '0', retries INT NOT NULL DEFAULT '0', failed INT NOT NULL DEFAULT '0', failure_threshold INT NOT NULL DEFAULT '60', last_success TIMESTAMP NOT NULL DEFAULT '0000-00-00 00:00:00', last_retry TIMESTAMP NOT NULL DEFAULT '0000-00-00 00:00:00', last_failure TIMESTAMP NOT NULL DEFAULT '0000-00-00 00:00:00', date_created TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id) ) ENGINE

Safe to delete?

If you have uninstalled Fast Events, 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_fe_event_webhooks`;

Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.

Other tables from Fast Events