wp_growfund_bookmarks

Live

Stores growfund bookmarks data created by this plugin.

CREATE TABLE Statement

CREATE TABLE `wp_growfund_bookmarks` (\n  `ID` bigint unsigned NOT NULL AUTO_INCREMENT,\n  `campaign_id` bigint unsigned NOT NULL,\n  `user_id` bigint unsigned NOT NULL,\n  `created_at` datetime NOT NULL,\n  PRIMARY KEY (`ID`),\n  UNIQUE KEY `unique_bookmarks_campaign_user` (`campaign_id`,`user_id`),\n  KEY `user_id` (`user_id`),\n  CONSTRAINT `wp_growfund_bookmarks_ibfk_1` FOREIGN KEY (`campaign_id`) REFERENCES `wp_posts` (`ID`) ON DELETE CASCADE ON UPDATE CASCADE,\n  CONSTRAINT `wp_growfund_bookmarks_ibfk_2` FOREIGN KEY (`user_id`) REFERENCES `wp_users` (`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_bookmarks`;

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

Other tables from Growfund – Ultimate Donation & Crowdfunding Solution