wp_epaka_settings
StaticStores epaka settings data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int(11) | NO |
| payment_type | int(11) | NO |
| default_label_format | int(11) | NO |
| first_name | VARCHAR(255) | YES |
| last_name | VARCHAR(255) | YES |
| company_name | VARCHAR(255) | YES |
| street | VARCHAR(255) | YES |
| country | VARCHAR(100) | YES |
| house_number | VARCHAR(50) | YES |
| post_code | VARCHAR(20) | YES |
| city | VARCHAR(255) | YES |
| phone | VARCHAR(50) | YES |
| VARCHAR(255) | YES | |
| free_shipping_threshold | int(11) | YES |
| created_at | DATETIME | NO |
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