wp_fullstripe_checkout_form_submit
StaticStores form definitions and related configuration.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | INT | NO |
| hash | VARCHAR(191) | NO |
| formHash | VARCHAR(64) | NO |
| formType | VARCHAR(30) | YES |
| referrer | VARCHAR(1024) | NO |
| postData | TEXT | NO |
| liveMode | TINYINT(1) | YES |
| created | DATETIME | NO |
| status | VARCHAR(32) | NO |
| lastMessageTitle | VARCHAR(256) | YES |
| lastMessage | VARCHAR(1024) | YES |
| processedWithError | INT | YES |
| errorMessage | VARCHAR(180) | YES |
| relatedStripeEventIDs | TEXT | YES |
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