wp_givasso_donations

Static

Stores givasso donations data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idBIGINT UNSIGNEDNO
donor_idBIGINT UNSIGNEDNO
campaign_idBIGINT UNSIGNEDYES
amountDECIMAL(10,2)NO
currencyCHAR(3)NO
statusENUM('pending','completed','failed','refunded','cancelled')NO
gatewayVARCHAR(50)NO
gateway_transaction_idVARCHAR(255)YES
gateway_refund_refVARCHAR(255)YES
is_recurringTINYINT(1)NO
frequencyVARCHAR(20)YES
receipt_idBIGINT UNSIGNEDYES
donor_messageTEXTYES
created_atDATETIMENO
updated_atDATETIMENO

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