wp_cbt_learning_progress
StaticStores cbt learning progress data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT UNSIGNED | NO |
| user_id | BIGINT UNSIGNED | NO |
| course_id | BIGINT UNSIGNED | NO |
| session_id | BIGINT UNSIGNED | NO |
| video_completed | TINYINT(1) | YES |
| module_completed | TINYINT(1) | YES |
| quiz_completed | TINYINT(1) | YES |
| score | INT | YES |
| status | VARCHAR(20) | YES |
| completed_at | DATETIME | YES |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_cbt_learning_progress ( id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, user_id BIGINT UNSIGNED NOT NULL, course_id BIGINT UNSIGNED NOT NULL, session_id BIGINT UNSIGNED NOT NULL, video_completed TINYINT(1) DEFAULT 0, module_completed TINYINT(1) DEFAULT 0, quiz_completed TINYINT(1) DEFAULT 0, score INT DEFAULT 0, status VARCHAR(20) DEFAULT 'locked', completed_at DATETIME NULL, PRIMARY KEY (id), UNIQUE KEY unique_user_session (user_id, session_id), KEY user_id (user_id), KEY course_id (course_id), KEY session_id (session_id) ) $charset_collate;"; dbDelta($progress);
Safe to delete?
If you have uninstalled Smitacs CBT Ujian, 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_cbt_learning_progress`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Smitacs CBT Ujian