wp_test
StaticStores test data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑ID | BIGINT(255) UNSIGNED | NO |
| name | VARCHAR(255) | NO |
| VARCHAR(255) | YES |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_test (ID BIGINT(255) UNSIGNED AUTO_INCREMENT PRIMARY KEY NOT NULL, name VARCHAR(255) NOT NULL, email VARCHAR(255) DEFAULT 'nil', INDEX (ID))"; $query = CreateApi::create('test') ->column('ID')->bigInt()->unsigned()->autoIncrement()->primary()->required() ->column('name')->string(255)->required() ->column('email')->string(255)->default('nil') ->index(['ID']) ->getSql();Safe to delete?
If you have uninstalled Multi Currency, Currency Switcher, Exchange Rates for WooCommerce – Mudra, 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_test`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.