wp_fullstripe_log
StaticA logging table that records activity, events, or audit history.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | INT | NO |
| created | DATETIME | NO |
| module | VARCHAR(64) | NO |
| class | VARCHAR(128) | NO |
| function | VARCHAR(128) | NO |
| level | VARCHAR(16) | NO |
| message | VARCHAR(512) | NO |
| exception | TEXT | NO |
CREATE TABLE Statement
CREATE TABLE wp_fullstripe_log ( id INT NOT NULL AUTO_INCREMENT, created DATETIME NOT NULL, `module` VARCHAR(64) NOT NULL, `class` VARCHAR(128) NOT NULL, `function` VARCHAR(128) NOT NULL, `level` VARCHAR(16) NOT NULL, `message` VARCHAR(512) NOT NULL, `exception` TEXT NOT NULL, PRIMARY KEY (id), KEY created (created), KEY `module` (`module`), KEY `class` (`class`), KEY `function` (`function`), KEY `level` (`level`) ) $charset_collate;"; // database write/update dbDelta( $sql );
Safe to delete?
If you have uninstalled Stripe Payment Forms by WP Full Pay – Accept Credit Card Payments, Donations & Subscriptions, 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_fullstripe_log`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Stripe Payment Forms by WP Full Pay – Accept Credit Card Payments, Donations & Subscriptions