wp_gym_builder_member_classes

Static

Stores gym builder member classes data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idBIGINT(20) UNSIGNEDNO
member_idBIGINT(20) UNSIGNEDNO
class_idBIGINT(20) UNSIGNEDNO
schedule_weekdayVARCHAR(20)YES
schedule_timeVARCHAR(50)YES
created_atDATETIMEYES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS `wp_gym_builder_member_classes` ( `id` BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT, `member_id` BIGINT(20) UNSIGNED NOT NULL, `class_id` BIGINT(20) UNSIGNED NOT NULL, `schedule_weekday` VARCHAR(20) DEFAULT NULL, `schedule_time` VARCHAR(50) DEFAULT NULL, `created_at` DATETIME DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (`id`), KEY `member_id` (`member_id`), KEY `class_lookup` (`class_id`,`schedule_weekday`,`schedule_time`), UNIQUE KEY `uniq_member_slot` (`member_id`,`class_id`,`schedule_weekday`,`schedule_time`) ) $charset_collate;"; dbDelta( $sql );

Safe to delete?

If you have uninstalled Gym Builder – Fitness Studio Booking, Class Schedule, Trainer Profiles, BMI Calculator & Member Management Plugin, 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_gym_builder_member_classes`;

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

Other tables from Gym Builder – Fitness Studio Booking, Class Schedule, Trainer Profiles, BMI Calculator & Member Management Plugin