wp_foxlms_submissions_lessons
StaticStores form submissions and user-entered data.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | INT(11) UNSIGNED | NO |
| submission_id | INT(11) UNSIGNED | NO |
| question_id | INT(11) UNSIGNED | NO |
| lesson_id | INT(11) UNSIGNED | NO |
| section_id | INT(11) UNSIGNED | NO |
| course_id | INT(11) UNSIGNED | NO |
| user_id | INT(11) | NO |
| answer_id | INT(11) | NO |
| user_answer | TEXT | NO |
| user_variant | TEXT | NO |
| user_explanation | TEXT | NO |
| type | TEXT | NO |
| options | TEXT | NO |
| point | INT(11) | NO |
CREATE TABLE Statement
CREATE TABLE `wp_foxlms_submissions_lessons` ( `id` INT(11) UNSIGNED NOT NULL AUTO_INCREMENT, `submission_id` INT(11) UNSIGNED NOT NULL DEFAULT '0', `question_id` INT(11) UNSIGNED NOT NULL DEFAULT '0', `lesson_id` INT(11) UNSIGNED NOT NULL DEFAULT '0', `section_id` INT(11) UNSIGNED NOT NULL DEFAULT '0', `course_id` INT(11) UNSIGNED NOT NULL DEFAULT '0', `user_id` INT(11) NOT NULL DEFAULT '0', `answer_id` INT(11) NOT NULL DEFAULT '0', `user_answer` TEXT NOT NULL, `user_variant` TEXT NOT NULL, `user_explanation` TEXT NOT NULL, `type` TEXT NOT NULL, `options` TEXT NOT NULL, `point` INT(11) NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) $charset_collate;"; $results = $wpdb->get_results(// phpcs:ignore $wpdb->prepare( "SELECT * FROM INFORMATION_SCHEMA.TABLES WHERE table_schema = %s AND table_name = 'wp_foxlms_submissions_lessons' ", 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_submissions_lessons`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Fox LMS – eLearning & Course Builder