wp_fe_event_webhooks
StaticStores fe event webhooks data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT(20) UNSIGNED | NO |
| status | TINYINT(1) | NO |
| name | VARCHAR(100) | NO |
| user_id | BIGINT(20) UNSIGNED | NO |
| url | VARCHAR(200) | NO |
| secret | CHAR(40) | NO |
| retry_scheme | VARCHAR(50) | NO |
| topic | VARCHAR(50) | NO |
| pending | INT | NO |
| delivered | INT | NO |
| retries | INT | NO |
| failed | INT | NO |
| failure_threshold | INT | NO |
| last_success | TIMESTAMP | NO |
| last_retry | TIMESTAMP | NO |
| last_failure | TIMESTAMP | NO |
| date_created | TIMESTAMP | NO |
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