wp_gsp_instructor_payment
StaticStores gsp instructor payment data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑payment_id | bigint(20) | YES |
| amount | varchar(250) | YES |
| transaction_id | varchar(250) | YES |
| payment_method | varchar(250) | YES |
| instructor_id | int(11) | YES |
| payment_date | timestamp | YES |
| from_user_id | bigint(20) | YES |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_gsp_instructor_payment ( `payment_id` bigint(20) AUTO_INCREMENT, `amount` varchar(250) NULL, `transaction_id` varchar(250) NULL, `payment_method` varchar(250) NULL, `instructor_id` int(11) NULL, `payment_date` timestamp, `from_user_id` bigint(20) NULL,PRIMARY KEY (`payment_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_gsp_instructor_payment`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Quick Learn