wp_fullstripe_log

Static

A logging table that records activity, events, or audit history.

Column Definitions

ColumnTypeNullable
🔑idINTNO
createdDATETIMENO
moduleVARCHAR(64)NO
classVARCHAR(128)NO
functionVARCHAR(128)NO
levelVARCHAR(16)NO
messageVARCHAR(512)NO
exceptionTEXTNO

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