wp_tutor_scheduler
StaticStores tutor scheduler data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT UNSIGNED | NO |
| type | VARCHAR(50) | NO |
| reference_id | VARCHAR(255) | NO |
| scheduled_at_gmt | DATETIME | NO |
| status | VARCHAR(255) | NO |
| payload | LONGTEXT | YES |
| created_at_gmt | DATETIME | YES |
| updated_at_gmt | DATETIME | YES |
| scheduled_by | BIGINT UNSIGNED | YES |
| scheduled_for | BIGINT UNSIGNED | YES |
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