wp_foxlms_announcements

Static

Stores foxlms announcements data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idBIGINT(20) UNSIGNEDNO
course_idINT(20) UNSIGNEDNO
teacher_idINT(20) UNSIGNEDNO
titleTEXTNO
descriptionTEXTNO
created_atDATETIMENO
optionsTEXTNO

CREATE TABLE Statement

CREATE TABLE `wp_foxlms_announcements` ( `id` BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT, `course_id` INT(20) UNSIGNED NOT NULL DEFAULT '0', `teacher_id` INT(20) UNSIGNED NOT NULL DEFAULT '0', `title` TEXT NOT NULL, `description` TEXT NOT NULL, `created_at` DATETIME NOT NULL, `options` TEXT NOT 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_announcements' ", 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_announcements`;

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

Other tables from Fox LMS – eLearning & Course Builder