wp_cbt_courses

Static

Stores cbt courses data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idBIGINT UNSIGNEDNO
titleVARCHAR(255)NO
descriptionLONGTEXTYES
thumbnailVARCHAR(255)YES
statusVARCHAR(20)YES
created_atDATETIMEYES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_cbt_courses ( id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, title VARCHAR(255) NOT NULL, description LONGTEXT NULL, thumbnail VARCHAR(255) NULL, status VARCHAR(20) DEFAULT 'publish', created_at DATETIME DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id) ) $charset_collate;"; dbDelta($courses);

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_courses`;

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

Other tables from Smitacs CBT Ujian