wp_fullstripe_security_code
StaticStores fullstripe security code data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | INT | NO |
| sessionId | INT | NO |
| securityCode | VARCHAR(191) | NO |
| created | DATETIME | NO |
| sent | DATETIME | YES |
| consumed | DATETIME | YES |
| status | VARCHAR(32) | NO |
CREATE TABLE Statement
CREATE TABLE wp_fullstripe_security_code ( id INT NOT NULL AUTO_INCREMENT, sessionId INT NOT NULL, securityCode VARCHAR(191) NOT NULL, created DATETIME NOT NULL, sent DATETIME, consumed DATETIME, status VARCHAR(32) NOT NULL, PRIMARY KEY (id), KEY sessionId (sessionId), KEY securityCode (securityCode), KEY status (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_security_code`;
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