wp_foxlms_teachers_activity
StaticStores foxlms teachers activity data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT(20) UNSIGNED | NO |
| user_id | INT(20) UNSIGNED | NO |
| created | DATETIME | NO |
| updated | DATETIME | NO |
| status | VARCHAR(256) | YES |
| options | TEXT | YES |
CREATE TABLE Statement
CREATE TABLE `wp_foxlms_teachers_activity` ( `id` BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT, `user_id` INT(20) UNSIGNED NOT NULL DEFAULT '0', `created` DATETIME NOT NULL, `updated` DATETIME NOT NULL, `status` VARCHAR(256) DEFAULT NULL, `options` TEXT DEFAULT NULL, 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_teachers_activity' ", 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_teachers_activity`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Fox LMS – eLearning & Course Builder