wp_entabit_backups

Static

Stores entabit backups data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idbigint(20) UNSIGNEDNO
backup_namevarchar(255)NO
backup_datedatetimeNO
backup_sizebigint(20)NO
backup_typevarchar(50)NO
local_pathtextYES
statusvarchar(50)NO
error_messagetextYES
progress_stagevarchar(100)YES
progress_percenttinyint(3)YES
verifiedtinyint(1)YES
created_atdatetimeNO
updated_atdatetimeYES
levelvarchar(20)NO
messagetextNO
contexttextYES
backup_idbigint(20)YES
created_atdatetimeNO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_entabit_backups ( id bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, backup_name varchar(255) NOT NULL, backup_date datetime NOT NULL, backup_size bigint(20) NOT NULL, backup_type varchar(50) NOT NULL DEFAULT 'full', local_path text, checksum varchar(64), status varchar(50) NOT NULL DEFAULT 'pending', error_message text, progress_stage varchar(100), progress_percent tinyint(3), verified tinyint(1) DEFAULT 0, created_at datetime NOT NULL, updated_at datetime, PRIMARY KEY (id), KEY backup_date (backup_date), KEY status (status), KEY created_at (created_at) ) $charset_collate;"; // Logs table $sql_logs = "CREATE TABLE IF NOT EXISTS wp_entabit_logs ( id bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, level varchar(20) NOT NULL, message text NOT NULL, context text, backup_id bigint(20), created_at datetime NOT NULL, PRIMARY KEY (id), KEY level (level), KEY backup_id (backup_id), KEY created_at (created_at) ) $charset_collate;"; require_once ABSPATH . 'wp-admin/includes/upgrade.php'; dbDelta( $sql_backups );

Safe to delete?

If you have uninstalled Entabit Backup – Complete WordPress Website Backups, 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_entabit_backups`;

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

Other tables from Entabit Backup – Complete WordPress Website Backups