wp_gsplms_question_answers

Static

Stores gsplms question answers data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑question_answer_idbigint(20)NO
question_idbigint(20)NO
answer_datatextYES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_gsplms_question_answers ( `question_answer_id` bigint(20) NOT NULL AUTO_INCREMENT, `question_id` bigint(20) NOT NULL, `answer_data` text NULL,PRIMARY KEY (`question_answer_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_gsplms_question_answers`;

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

Other tables from Quick Learn