wp_cb_blocks
StaticStores cb blocks data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | INT | NO |
| title | VARCHAR(255) | NO |
| slug | VARCHAR(255) | NO |
| template | LONGTEXT | NO |
| post_types | TEXT | NO |
| is_active | TINYINT(1) | NO |
| sort_order | INT | NO |
| created_at | DATETIME | NO |
CREATE TABLE Statement
CREATE TABLE wp_cb_blocks ( id INT NOT NULL AUTO_INCREMENT, title VARCHAR(255) NOT NULL DEFAULT '', slug VARCHAR(255) NOT NULL DEFAULT '', template LONGTEXT NOT NULL, post_types TEXT NOT NULL, is_active TINYINT(1) NOT NULL DEFAULT 1, sort_order INT NOT NULL DEFAULT 0, created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id), UNIQUE KEY slug (slug) ) $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_blocks`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from ChunkBlocks