wp_fullstripe_patch_info
StaticStores fullstripe patch info data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | INT | NO |
| patch_id | VARCHAR(191) | NO |
| plugin_version | VARCHAR(255) | NO |
| applied_at | DATETIME | NO |
| description | VARCHAR(500) | YES |
CREATE TABLE Statement
CREATE TABLE wp_fullstripe_patch_info ( id INT NOT NULL AUTO_INCREMENT, patch_id VARCHAR(191) NOT NULL, plugin_version VARCHAR(255) NOT NULL, applied_at DATETIME NOT NULL, description VARCHAR(500), PRIMARY KEY (id), KEY patch_id (patch_id) ) $charset_collate;"; 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_patch_info`;
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