wp_gumroad_product_relationships

Static

Stores product records and related data.

Column Definitions

ColumnTypeNullable
🔑idint(11) unsignedNO
product_idint(11) unsignedNO
gumroad_product_idvarchar(255)YES
created_bybigint(20) unsignedNO
created_atdatetimeNO

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.