wp_eascompliance_locations
StaticStores eascompliance locations data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑location_id | int | NO |
| location_name | varchar(100) | YES |
| location_country | varchar(2) | NO |
| location_full_address | varchar(1000) | YES |
| location_delivery_countries | varchar(100) | YES |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_eascompliance_locations ( location_id int NOT NULL AUTO_INCREMENT , location_name varchar(100) , location_country varchar(2) NOT NULL , location_full_address varchar(1000) , location_delivery_countries varchar(100) , PRIMARY KEY (location_id) ) ");
Safe to delete?
If you have uninstalled EAS EU compliance, 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_eascompliance_locations`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from EAS EU compliance