wp_foxlms_question_answers
StaticStores foxlms question answers data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | INT(11) UNSIGNED | NO |
| course_id | INT(11) UNSIGNED | NO |
| lesson_id | INT(11) UNSIGNED | NO |
| question_id | INT(11) UNSIGNED | NO |
| user_id | INT(11) UNSIGNED | NO |
| answer | TEXT | NO |
| date_created | DATETIME | NO |
| options | TEXT | NO |
CREATE TABLE Statement
CREATE TABLE `wp_foxlms_question_answers` ( `id` INT(11) UNSIGNED NOT NULL AUTO_INCREMENT, `course_id` INT(11) UNSIGNED NOT NULL DEFAULT '0', `lesson_id` INT(11) UNSIGNED NOT NULL, `question_id` INT(11) UNSIGNED NOT NULL, `user_id` INT(11) UNSIGNED NOT NULL, `answer` TEXT NOT NULL, `date_created` DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, `options` TEXT NOT NULL, PRIMARY KEY (`id`), KEY `question_id` (`question_id`), KEY `lesson_id` (`lesson_id`), KEY `course_id` (`course_id`), KEY `user_id` (`user_id`) )$charset_collate;"; $results = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM INFORMATION_SCHEMA.TABLES WHERE table_schema = %s AND table_name = 'wp_foxlms_question_answers' ", DB_NAME ) );
Safe to delete?
If you have uninstalled Fox LMS – eLearning & Course Builder, 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_foxlms_question_answers`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Fox LMS – eLearning & Course Builder