wp_gozen_growth
VerifiedStores gozen growth data created by this plugin.
CREATE TABLE Statement
CREATE TABLE `wp_gozen_growth` (\n `key_id` int NOT NULL AUTO_INCREMENT,\n `user_id` char(64) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n `consumer_key` char(64) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n `consumer_secret` char(64) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n `key_permission` char(64) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n `api_key` char(64) COLLATE utf8mb4_unicode_520_ci NOT NULL,\n `shop_uuid` char(64) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n `sync_user` int NOT NULL DEFAULT '0',\n `wc_auth_approve_status` int NOT NULL DEFAULT '0',\n `Login_status` int NOT NULL DEFAULT '0',\n PRIMARY KEY (`key_id`)\n) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci
Safe to delete?
If you have uninstalled GoZen Growth, 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_gozen_growth`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.