wp_buymecoffee_transactions

Static

Stores buymecoffee transactions data created by this plugin.

CREATE TABLE Statement

CREATE TABLE `wp_buymecoffee_transactions` (\n  `id` int NOT NULL AUTO_INCREMENT,\n  `entry_id` int DEFAULT NULL,\n  `entry_hash` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n  `subscription_id` int DEFAULT NULL,\n  `transaction_type` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT 'one_time',\n  `payment_method` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n  `card_last_4` int DEFAULT NULL,\n  `card_brand` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n  `charge_id` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n  `payment_total` int DEFAULT '1',\n  `status` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n  `currency` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n  `payment_mode` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n  `payment_note` longtext COLLATE utf8mb4_unicode_520_ci,\n  `created_at` timestamp NULL DEFAULT NULL,\n  `updated_at` timestamp NULL DEFAULT NULL,\n  PRIMARY KEY (`id`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci

Safe to delete?

If you have uninstalled Buy Me a Coffee – Membership, Paywall & Fundraiser with Stripe & PayPal, 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_buymecoffee_transactions`;

Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.

Other tables from Buy Me a Coffee – Membership, Paywall & Fundraiser with Stripe & PayPal