wp_user_payments

Static

Stores user payments data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑order_idbigint(20)YES
transaction_idvarchar(250)YES
amountvarchar(250)YES
transaction_typevarchar(250)YES
subscribed_datedatetimeYES
user_idbigint(20)YES
payment_statusvarchar(25)YES
payer_idvarchar(25)YES
course_idvarchar(45)YES
admin_commissionvarchar(20)YES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_user_payments ( `order_id` bigint(20) AUTO_INCREMENT, `transaction_id` varchar(250) NULL, `amount` varchar(250) NULL, `transaction_type` varchar(250) NULL, `subscribed_date` datetime NULL, `user_id` bigint(20) NULL, `payment_status` varchar(25) NULL, `payer_id` varchar(25) NULL, `course_id` varchar(45) NULL, `admin_commission` varchar(20) NULL,PRIMARY KEY (`order_id`) ) {$collate}");

Safe to delete?

If you have uninstalled Quick Learn, 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_user_payments`;

Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.

Other tables from Quick Learn