wp_better_payment

Static

Stores better payment data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idbigint(20)NO
order_idvarchar(50)NO
transaction_idvarchar(50)YES
amountdecimal(10,2)NO
statusvarchar(50)YES
sourcevarchar(50)NO
payment_datedatetimeYES
emailvarchar(50)NO
customer_infolongtextYES
form_fields_infolongtextYES
currencyvarchar(11)NO
referervarchar(64)YES
obj_idtextYES

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.