wp__fund
StaticStores fund data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑ID | int(11) | NO |
| campaign_id | int(11) | NO |
| campaign_owner_id | int(11) | NO |
| doner_name | varchar(50) | NO |
| doner_email | varchar(100) | NO |
| doner_amount | bigint(20) | NO |
| transaction_id | varchar(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