wp_gsp_instructor_payment

Static

Stores gsp instructor payment data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑payment_idbigint(20)YES
amountvarchar(250)YES
transaction_idvarchar(250)YES
payment_methodvarchar(250)YES
instructor_idint(11)YES
payment_datetimestampYES
from_user_idbigint(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