wp_epaka_settings

Static

Stores epaka settings data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idint(11)NO
payment_typeint(11)NO
default_label_formatint(11)NO
first_nameVARCHAR(255)YES
last_nameVARCHAR(255)YES
company_nameVARCHAR(255)YES
streetVARCHAR(255)YES
countryVARCHAR(100)YES
house_numberVARCHAR(50)YES
post_codeVARCHAR(20)YES
cityVARCHAR(255)YES
phoneVARCHAR(50)YES
emailVARCHAR(255)YES
free_shipping_thresholdint(11)YES
created_atDATETIMENO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_epaka_settings ( id int(11) NOT NULL AUTO_INCREMENT, payment_type int(11) NOT NULL, default_label_format int(11) NOT NULL, first_name VARCHAR(255) DEFAULT NULL, last_name VARCHAR(255) DEFAULT NULL, company_name VARCHAR(255) DEFAULT NULL, street VARCHAR(255) DEFAULT NULL, country VARCHAR(100) DEFAULT 'PL', house_number VARCHAR(50) DEFAULT NULL, post_code VARCHAR(20) DEFAULT NULL, city VARCHAR(255) DEFAULT NULL, phone VARCHAR(50) DEFAULT NULL, email VARCHAR(255) DEFAULT NULL, free_shipping_threshold int(11) DEFAULT NULL, created_at DATETIME NOT NULL, PRIMARY KEY (id) ) $charset_collate;" ]; require_once ABSPATH . 'wp-admin/includes/upgrade.php'; foreach ($queries as $query) { dbDelta($query);

Safe to delete?

If you have uninstalled Epaka Shipping for WooCommerce, 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_epaka_settings`;

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

Other tables from Epaka Shipping for WooCommerce