wp_cb_fields
StaticStores cb fields data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | INT | NO |
| block_id | INT | NO |
| title | VARCHAR(255) | NO |
| field_key | VARCHAR(255) | NO |
| field_type | VARCHAR(50) | NO |
| field_options | TEXT | NO |
| group_name | VARCHAR(100) | NO |
| is_required | TINYINT(1) | NO |
| is_active | TINYINT(1) | NO |
| sort_order | INT | NO |
CREATE TABLE Statement
CREATE TABLE wp_cb_fields ( id INT NOT NULL AUTO_INCREMENT, block_id INT NOT NULL, title VARCHAR(255) NOT NULL DEFAULT '', field_key VARCHAR(255) NOT NULL DEFAULT '', field_type VARCHAR(50) NOT NULL DEFAULT 'text', field_options TEXT NOT NULL, group_name VARCHAR(100) NOT NULL DEFAULT '', is_required TINYINT(1) NOT NULL DEFAULT 0, is_active TINYINT(1) NOT NULL DEFAULT 1, sort_order INT NOT NULL DEFAULT 0, PRIMARY KEY (id), KEY block_id (block_id) ) $charset; ");
Safe to delete?
If you have uninstalled ChunkBlocks, 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_cb_fields`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from ChunkBlocks