wp_user_payments
StaticStores user payments data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑order_id | bigint(20) | YES |
| transaction_id | varchar(250) | YES |
| amount | varchar(250) | YES |
| transaction_type | varchar(250) | YES |
| subscribed_date | datetime | YES |
| user_id | bigint(20) | YES |
| payment_status | varchar(25) | YES |
| payer_id | varchar(25) | YES |
| course_id | varchar(45) | YES |
| admin_commission | varchar(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