wp_woocommerce_square_customers
StaticStores woocommerce square customers data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| square_id | varchar(191) | NO |
| email_address | varchar(200) | NO |
| user_id | BIGINT UNSIGNED | NO |
CREATE TABLE Statement
CREATE TABLE wp_woocommerce_square_customers (`square_id` varchar(191) NOT NULL, `email_address` varchar(200) NOT NULL, `user_id` BIGINT UNSIGNED NOT NULL, PRIMARY KEY (`square_id`) ) %1s", $collate );
Safe to delete?
If you have uninstalled WooCommerce Square, 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_woocommerce_square_customers`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.