wp_buymecoffee_supporters
StaticStores buymecoffee supporters data created by this plugin.
CREATE TABLE Statement
CREATE TABLE `wp_buymecoffee_supporters` (\n `id` int NOT NULL AUTO_INCREMENT,\n `supporters_name` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n `supporters_email` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n `supporters_message` text COLLATE utf8mb4_unicode_520_ci,\n `form_data_raw` longtext COLLATE utf8mb4_unicode_520_ci,\n `currency` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n `payment_status` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n `entry_hash` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n `payment_total` int DEFAULT NULL,\n `coffee_count` int DEFAULT NULL,\n `payment_mode` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n `payment_method` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n `status` varchar(255) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n `reference` varchar(50) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n `ip_address` varchar(45) COLLATE utf8mb4_unicode_520_ci DEFAULT NULL,\n `other_infos` 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_supporters`;
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