wp_linkboss_sync_batch

Static

Stores linkboss sync batch data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idINT(11)NO
post_idBIGINT(20) UNSIGNEDNO
content_sizeINT(11)YES
post_typeVARCHAR(50)YES
post_statusVARCHAR(50)YES
sent_statusVARCHAR(20)YES
page_builderVARCHAR(255)YES
GutenbergetcYES
others_dataLONGTEXTYES
created_atTIMESTAMPNO
sync_atTIMESTAMPYES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_linkboss_sync_batch ( `id` INT(11) NOT NULL AUTO_INCREMENT PRIMARY KEY, `post_id` BIGINT(20) UNSIGNED NOT NULL UNIQUE, `content_size` INT(11) NULL DEFAULT NULL, `post_type` VARCHAR(50) DEFAULT 'post' COMMENT 'post, page, attachment', `post_status` VARCHAR(50) DEFAULT 'publish' COMMENT 'publish, draft, trash', `sent_status` VARCHAR(20) NULL DEFAULT NULL COMMENT 'bool(1=Sent, NULL=Not Sent)', `page_builder` VARCHAR(255) DEFAULT NULL COMMENT 'Elementor, Gutenberg etc', `others_data` LONGTEXT DEFAULT NULL COMMENT 'Other Data', `created_at` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT 'Data DB Created Server Time', `sync_at` TIMESTAMP NULL COMMENT 'Last Activity of APPS', INDEX idx_post_id (post_id) ) $charset_collate"; /** * status column type change to VARCHAR(1) from TINYINT(1) and also change the name to sent_status * * @since 2.2.0 */ $table_schema = esc_sql( DB_NAME );

Safe to delete?

If you have uninstalled LinkBoss – Semantic AI Internal Linking, 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_linkboss_sync_batch`;

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