wp_foxlms_sections

Static

Stores foxlms sections data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idINT(16) UNSIGNEDNO
titleVARCHAR(256)NO
descriptionTEXTNO
orderingINT(11)NO
optionsTEXTNO

CREATE TABLE Statement

CREATE TABLE `wp_foxlms_sections` ( `id` INT(16) UNSIGNED NOT NULL AUTO_INCREMENT, `title` VARCHAR(256) NOT NULL DEFAULT '', `description` TEXT NOT NULL, `ordering` INT(11) NOT NULL DEFAULT '1', `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_sections' ", 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_sections`;

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

Other tables from Fox LMS – eLearning & Course Builder