wp_gumroad_product_relationships
StaticStores product records and related data.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int(11) unsigned | NO |
| product_id | int(11) unsigned | NO |
| gumroad_product_id | varchar(255) | YES |
| created_by | bigint(20) unsigned | NO |
| created_at | datetime | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS `wp_gumroad_product_relationships` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `product_id` int(11) unsigned NOT NULL, `gumroad_product_id` varchar(255) DEFAULT NULL, `created_by` bigint(20) unsigned NOT NULL, `created_at` datetime NOT NULL, PRIMARY KEY (`id`) ) $charset_collate"; if ( ! function_exists( 'dbDelta' ) ) { require_once ABSPATH . 'wp-admin/includes/upgrade.php'; } dbDelta( $schema );Safe to delete?
If you have uninstalled Gumpress, 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_gumroad_product_relationships`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.