wp_fullstripe_checkout_form_submit

Static

Stores form definitions and related configuration.

Column Definitions

ColumnTypeNullable
🔑idINTNO
hashVARCHAR(191)NO
formHashVARCHAR(64)NO
formTypeVARCHAR(30)YES
referrerVARCHAR(1024)NO
postDataTEXTNO
liveModeTINYINT(1)YES
createdDATETIMENO
statusVARCHAR(32)NO
lastMessageTitleVARCHAR(256)YES
lastMessageVARCHAR(1024)YES
processedWithErrorINTYES
errorMessageVARCHAR(180)YES
relatedStripeEventIDsTEXTYES

CREATE TABLE Statement

CREATE TABLE wp_fullstripe_checkout_form_submit ( id INT NOT NULL AUTO_INCREMENT, hash VARCHAR(191) NOT NULL, formHash VARCHAR(64) NOT NULL, formType VARCHAR(30), referrer VARCHAR(1024) NOT NULL, postData TEXT NOT NULL, checkoutSessionId VARCHAR(191), liveMode TINYINT(1), created DATETIME NOT NULL, status VARCHAR(32) NOT NULL, lastMessageTitle VARCHAR(256), lastMessage VARCHAR(1024), processedWithError INT DEFAULT 0, errorMessage VARCHAR(180), relatedStripeEventIDs TEXT, PRIMARY KEY (id), KEY hash (hash), KEY checkoutSessionId (checkoutSessionId), KEY status (status), KEY liveMode (liveMode), KEY liveModeStatus (liveMode, status) ) $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_checkout_form_submit`;

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