wp_erp_acct_synced_taxes

Static

Stores erp acct synced taxes data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idintNO
system_idbigintNO
sync_idbigintYES
sync_slugvarchar(100)YES
sync_typevarchar(100)YES
sync_sourcevarchar(100)YES

CREATE TABLE Statement

CREATE TABLE wp_erp_acct_synced_taxes ( id int NOT NULL AUTO_INCREMENT, system_id bigint NOT NULL, sync_id bigint DEFAULT NULL, sync_slug varchar(100) DEFAULT NULL, sync_type varchar(100) DEFAULT NULL, sync_source varchar(100) DEFAULT NULL, PRIMARY KEY (id), KEY system_id (system_id), KEY sync_id (sync_id), KEY sync_slug (sync_slug), KEY sync_type (sync_type), KEY sync_source (sync_source) ) $charset_collate;"; require_once ABSPATH . 'wp-admin/includes/upgrade.php'; dbDelta( $schema );

Safe to delete?

If you have uninstalled ERP: Complete HR, Recruitment, Accounting & CRM Suite with WooCommerce CRM Support, 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_erp_acct_synced_taxes`;

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

Other tables from ERP: Complete HR, Recruitment, Accounting & CRM Suite with WooCommerce CRM Support