wp_foxlms_lesson_reports
StaticStores foxlms lesson reports data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint(20) unsigned | NO |
| course_id | bigint(20) unsigned | NO |
| lesson_id | bigint(20) unsigned | NO |
| user_id | bigint(20) unsigned | NO |
| report | text | NO |
| status | varchar(20) | NO |
| resolve_date | datetime | YES |
| created | datetime | NO |
| updated | datetime | NO |
CREATE TABLE Statement
CREATE TABLE `wp_foxlms_lesson_reports` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `course_id` bigint(20) unsigned NOT NULL DEFAULT '0', `lesson_id` bigint(20) unsigned NOT NULL DEFAULT '0', `user_id` bigint(20) unsigned NOT NULL DEFAULT '0', `report` text NOT NULL, `status` varchar(20) NOT NULL DEFAULT 'in_review', `resolve_date` datetime DEFAULT NULL, `created` datetime NOT NULL, `updated` datetime NOT NULL, PRIMARY KEY (`id`), KEY `course_id` (`course_id`), KEY `lesson_id` (`lesson_id`), KEY `user_id` (`user_id`), KEY `status` (`status`), KEY `created` (`created`) ) $charset_collate;"; $results = $wpdb->get_results( $wpdb->prepare( "SELECT * FROM INFORMATION_SCHEMA.TABLES WHERE table_schema = %s AND table_name = 'wp_foxlms_lesson_reports' ", 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_lesson_reports`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Fox LMS – eLearning & Course Builder