wp_dydo_onetime_donations

Static

Stores dydo onetime donations data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idint(11)NO
user_idint(11)NO
customer_idvarchar(255)NO
transaction_idvarchar(255)NO
amountfloatNO
currencyvarchar(5)NO
created_atdatetimeNO
updated_atdatetimeNO
confirmedTINYINTNO
dydo_gateways_idint(11)NO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS `dydo_onetime_donations` ( `id` int(11) NOT NULL AUTO_INCREMENT, `user_id` int(11) NOT NULL, `customer_id` varchar(255) NOT NULL, `transaction_id` varchar(255) NOT NULL, `amount` float NOT NULL, `currency` varchar(5) NOT NULL, `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, `confirmed` TINYINT NOT NULL DEFAULT '0', `dydo_gateways_id` int(11) NOT NULL, PRIMARY KEY (`id`,`dydo_gateways_id`), UNIQUE KEY `id` (`id`), KEY `dydo_donations_transaction_id_uindex` (`transaction_id`), KEY `fk_dydo_onetime_donations_dydo_gateways1_idx` (`dydo_gateways_id`), CONSTRAINT `fk_dydo_onetime_donations_dydo_gateways1` FOREIGN KEY (`dydo_gateways_id`) REFERENCES `dydo_gateways` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION ) $charset_collate;" );

Safe to delete?

If you have uninstalled Dynamic Donations, 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_dydo_onetime_donations`;

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

Other tables from Dynamic Donations