wp__fund

Static

Stores fund data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑IDint(11)NO
campaign_idint(11)NO
campaign_owner_idint(11)NO
doner_namevarchar(50)NO
doner_emailvarchar(100)NO
doner_amountbigint(20)NO
transaction_idvarchar(50)NO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS `wp__fund` ( `ID` int(11) NOT NULL AUTO_INCREMENT, `campaign_id` int(11) NOT NULL, `campaign_owner_id` int(11) NOT NULL, `doner_name` varchar(50) NOT NULL, `doner_email` varchar(100) NOT NULL, `doner_amount` bigint(20) NOT NULL, `transaction_id` varchar(50) NOT NULL, PRIMARY KEY (`ID`) ) ENGINE

Safe to delete?

If you have uninstalled Campaign, 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__fund`;

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

Other tables from Campaign