wp_tutor_scheduler

Static

Stores tutor scheduler data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idBIGINT UNSIGNEDNO
typeVARCHAR(50)NO
reference_idVARCHAR(255)NO
scheduled_at_gmtDATETIMENO
statusVARCHAR(255)NO
payloadLONGTEXTYES
created_at_gmtDATETIMEYES
updated_at_gmtDATETIMEYES
scheduled_byBIGINT UNSIGNEDYES
scheduled_forBIGINT UNSIGNEDYES

CREATE TABLE Statement

CREATE TABLE wp_tutor_scheduler ( id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, type VARCHAR(50) NOT NULL COMMENT 'Type of schedule, e.g., gift, email, reminder', reference_id VARCHAR(255) NOT NULL COMMENT 'Unique reference id, token, etc', scheduled_at_gmt DATETIME NOT NULL COMMENT 'When the action should be executed', status VARCHAR(255) NOT NULL DEFAULT 'processing', payload LONGTEXT, created_at_gmt DATETIME, updated_at_gmt DATETIME, scheduled_by BIGINT UNSIGNED COMMENT 'User who scheduled the action', scheduled_for BIGINT UNSIGNED COMMENT 'Target user of the scheduled action', PRIMARY KEY (id), KEY idx_context_status (type, status), KEY idx_status (status), KEY idx_scheduled_at_gmt (scheduled_at_gmt) ) $charset_collate;"; dbDelta( $table_schema );

Safe to delete?

If you have uninstalled Tutor LMS – eLearning and online course solution, 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_tutor_scheduler`;

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

Other tables from Tutor LMS – eLearning and online course solution