wp_growfund_activities

Live

Stores growfund activities data created by this plugin.

CREATE TABLE Statement

CREATE TABLE `wp_growfund_activities` (\n  `ID` bigint unsigned NOT NULL AUTO_INCREMENT,\n  `type` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `campaign_id` bigint unsigned DEFAULT NULL,\n  `pledge_id` bigint unsigned DEFAULT NULL,\n  `donation_id` bigint unsigned DEFAULT NULL,\n  `data` text COLLATE utf8mb4_unicode_520_ci,\n  `user_id` bigint unsigned DEFAULT NULL,\n  `created_by` bigint unsigned DEFAULT NULL,\n  `created_at` datetime NOT NULL,\n  PRIMARY KEY (`ID`),\n  KEY `campaign_id` (`campaign_id`),\n  KEY `created_by` (`created_by`),\n  KEY `pledge_id` (`pledge_id`),\n  KEY `donation_id` (`donation_id`),\n  KEY `idx_activity_type_campaign_id` (`type`,`campaign_id`),\n  CONSTRAINT `wp_growfund_activities_ibfk_1` FOREIGN KEY (`campaign_id`) REFERENCES `wp_posts` (`ID`) ON DELETE CASCADE ON UPDATE CASCADE,\n  CONSTRAINT `wp_growfund_activities_ibfk_2` FOREIGN KEY (`created_by`) REFERENCES `wp_users` (`ID`) ON DELETE CASCADE ON UPDATE CASCADE,\n  CONSTRAINT `wp_growfund_activities_ibfk_3` FOREIGN KEY (`pledge_id`) REFERENCES `wp_growfund_pledges` (`ID`) ON DELETE CASCADE ON UPDATE CASCADE,\n  CONSTRAINT `wp_growfund_activities_ibfk_4` FOREIGN KEY (`donation_id`) REFERENCES `wp_growfund_donations` (`ID`) ON DELETE CASCADE ON UPDATE CASCADE\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci

Safe to delete?

If you have uninstalled Growfund – Ultimate Donation & Crowdfunding Solution, 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_growfund_activities`;

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

Other tables from Growfund – Ultimate Donation & Crowdfunding Solution