wp_cbt_courses
StaticStores cbt courses data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT UNSIGNED | NO |
| title | VARCHAR(255) | NO |
| description | LONGTEXT | YES |
| thumbnail | VARCHAR(255) | YES |
| status | VARCHAR(20) | YES |
| created_at | DATETIME | YES |
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