wp_craftsmenit_cbfw_subcategories

Static

Stores craftsmenit cbfw subcategories data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idBIGINT UNSIGNEDNO
category_idBIGINT UNSIGNEDNO
nameVARCHAR(255)NO
slugVARCHAR(255)NO
sort_orderINTNO
created_atDATETIMENO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_craftsmenit_cbfw_subcategories ( id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, category_id BIGINT UNSIGNED NOT NULL, name VARCHAR(255) NOT NULL, slug VARCHAR(255) NOT NULL, sort_order INT NOT NULL DEFAULT 0, created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id), KEY category_id (category_id) ) $charset;"; require_once ABSPATH . 'wp-admin/includes/upgrade.php'; dbDelta( $sql );

Safe to delete?

If you have uninstalled Craftsmenit Course Builder for WooCommerce, 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_craftsmenit_cbfw_subcategories`;

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