wp_entabit_backups
StaticStores entabit backups data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint(20) UNSIGNED | NO |
| backup_name | varchar(255) | NO |
| backup_date | datetime | NO |
| backup_size | bigint(20) | NO |
| backup_type | varchar(50) | NO |
| local_path | text | YES |
| status | varchar(50) | NO |
| error_message | text | YES |
| progress_stage | varchar(100) | YES |
| progress_percent | tinyint(3) | YES |
| verified | tinyint(1) | YES |
| created_at | datetime | NO |
| updated_at | datetime | YES |
| level | varchar(20) | NO |
| message | text | NO |
| context | text | YES |
| backup_id | bigint(20) | YES |
| created_at | datetime | NO |
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