wp_fullstripe_card_update_session

Static

Stores session data for tracking user or visitor state.

Column Definitions

ColumnTypeNullable
🔑idINTNO
hashVARCHAR(191)NO
emailVARCHAR(191)NO
liveModeTINYINT(1)YES
stripeCustomerIdVARCHAR(100)NO
securityCodeRequestINTYES
securityCodeInputINTYES
createdDATETIMENO
statusVARCHAR(32)NO

CREATE TABLE Statement

CREATE TABLE wp_fullstripe_card_update_session ( id INT NOT NULL AUTO_INCREMENT, hash VARCHAR(191) NOT NULL, email VARCHAR(191) NOT NULL, liveMode TINYINT(1), stripeCustomerId VARCHAR(100) NOT NULL, securityCodeRequest INT DEFAULT 0, securityCodeInput INT DEFAULT 0, created DATETIME NOT NULL, status VARCHAR(32) NOT NULL, PRIMARY KEY (id), KEY hash (hash), KEY email (email), KEY stripeCustomerId (stripeCustomerId), KEY status (status), KEY created (created) ) $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_card_update_session`;

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