wp_cbt_learning_progress

Static

Stores cbt learning progress data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idBIGINT UNSIGNEDNO
user_idBIGINT UNSIGNEDNO
course_idBIGINT UNSIGNEDNO
session_idBIGINT UNSIGNEDNO
video_completedTINYINT(1)YES
module_completedTINYINT(1)YES
quiz_completedTINYINT(1)YES
scoreINTYES
statusVARCHAR(20)YES
completed_atDATETIMEYES

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