wp_dydo_subscription_donations

Static

Stores dydo subscription donations data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idint(11)NO
transaction_idvarchar(255)NO
amountfloatNO
currencyvarchar(5)NO
created_atdatetimeNO
updated_atdatetimeNO
confirmedTINYINTNO
dydo_subscriptions_idint(11)NO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS `dydo_subscription_donations` ( `id` int(11) NOT NULL AUTO_INCREMENT, `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 '1', `dydo_subscriptions_id` int(11) NOT NULL, PRIMARY KEY (`id`,`dydo_subscriptions_id`), UNIQUE KEY `id` (`id`), UNIQUE KEY `dydo_donations_transaction_id_uindex` (`transaction_id`), KEY `fk_dydo_donations_dydo_subscriptions1_idx` (`dydo_subscriptions_id`), CONSTRAINT `fk_dydo_donations_dydo_subscriptions1` FOREIGN KEY (`dydo_subscriptions_id`) REFERENCES `dydo_subscriptions` (`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_subscription_donations`;

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

Other tables from Dynamic Donations