wp_accounts_countries
StaticStores accounts countries data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑ID | int(11) | NO |
| country_code | varchar(2) | NO |
| country | varchar(255) | NO |
CREATE TABLE Statement
CREATE TABLE wp_accounts_countries ( ID int(11) NOT NULL AUTO_INCREMENT, country_code varchar(2) NOT NULL, country varchar(255) NOT NULL, PRIMARY KEY (ID) ) {$wpdb->get_charset_collate()} AUTO_INCREMENT=1;" );Safe to delete?
If you have uninstalled Web:D Accounts, 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_accounts_countries`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Web:D Accounts