wp_better_payment
StaticStores better payment data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint(20) | NO |
| order_id | varchar(50) | NO |
| transaction_id | varchar(50) | YES |
| amount | decimal(10,2) | NO |
| status | varchar(50) | YES |
| source | varchar(50) | NO |
| payment_date | datetime | YES |
| varchar(50) | NO | |
| customer_info | longtext | YES |
| form_fields_info | longtext | YES |
| currency | varchar(11) | NO |
| referer | varchar(64) | YES |
| obj_id | text | YES |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_better_payment( id bigint(20) NOT NULL AUTO_INCREMENT, order_id varchar(50) NOT NULL, transaction_id varchar(50) DEFAULT '', amount decimal(10,2) NOT NULL, status varchar(50) DEFAULT NULL, source varchar(50) NOT NULL, payment_date datetime DEFAULT NULL, email varchar(50) NOT NULL DEFAULT '', customer_info longtext, form_fields_info longtext, currency varchar(11) NOT NULL DEFAULT '', referer varchar(64) DEFAULT NULL, obj_id text, PRIMARY KEY (id), KEY order_id (order_id), KEY status (status) ) ENGINE
Safe to delete?
If you have uninstalled Better Payment – Instant Payments, Donations, Fundraising with Subscriptions & More, 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_better_payment`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.