wp_givasso_donations
StaticStores givasso donations data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT UNSIGNED | NO |
| donor_id | BIGINT UNSIGNED | NO |
| campaign_id | BIGINT UNSIGNED | YES |
| amount | DECIMAL(10,2) | NO |
| currency | CHAR(3) | NO |
| status | ENUM('pending','completed','failed','refunded','cancelled') | NO |
| gateway | VARCHAR(50) | NO |
| gateway_transaction_id | VARCHAR(255) | YES |
| gateway_refund_ref | VARCHAR(255) | YES |
| is_recurring | TINYINT(1) | NO |
| frequency | VARCHAR(20) | YES |
| receipt_id | BIGINT UNSIGNED | YES |
| donor_message | TEXT | YES |
| created_at | DATETIME | NO |
| updated_at | DATETIME | NO |
CREATE TABLE Statement
CREATE TABLE wp_givasso_donations ( id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, donor_id BIGINT UNSIGNED NOT NULL, campaign_id BIGINT UNSIGNED DEFAULT NULL, amount DECIMAL(10,2) NOT NULL, currency CHAR(3) NOT NULL DEFAULT 'EUR', status ENUM('pending','completed','failed','refunded','cancelled') NOT NULL DEFAULT 'pending', gateway VARCHAR(50) NOT NULL DEFAULT 'stripe', gateway_transaction_id VARCHAR(255) DEFAULT NULL, gateway_refund_ref VARCHAR(255) DEFAULT NULL, is_recurring TINYINT(1) NOT NULL DEFAULT 0, frequency VARCHAR(20) DEFAULT NULL, receipt_id BIGINT UNSIGNED DEFAULT NULL, donor_message TEXT DEFAULT NULL, created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP, updated_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (id), KEY idx_donor (donor_id), KEY idx_status (status), KEY idx_created (created_at), KEY idx_refund_ref (gateway_refund_ref) ) $charset;" );Safe to delete?
If you have uninstalled Givasso, 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_givasso_donations`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Givasso