wp_cb_page_blocks

Static

Stores cb page blocks data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idINTNO
post_idINTNO
block_idINTNO
field_valuesLONGTEXTNO
sort_orderINTNO
is_activeTINYINT(1)NO
created_atDATETIMENO

CREATE TABLE Statement

CREATE TABLE wp_cb_page_blocks ( id INT NOT NULL AUTO_INCREMENT, post_id INT NOT NULL, block_id INT NOT NULL, field_values LONGTEXT NOT NULL, sort_order INT NOT NULL DEFAULT 0, is_active TINYINT(1) NOT NULL DEFAULT 1, created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id), KEY post_id (post_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_page_blocks`;

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

Other tables from ChunkBlocks