wp_dydo_subscriptions

Static

Stores dydo subscriptions data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idint(11)NO
user_idint(11)NO
subscription_idvarchar(45)NO
customer_idvarchar(255)NO
activetinyint(4)NO
created_atdatetimeNO
updated_atdatetimeYES
amountfloatNO
next_payment_attemptint(20)NO
dydo_gateways_idint(11)NO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS `dydo_subscriptions` ( `id` int(11) NOT NULL AUTO_INCREMENT, `user_id` int(11) NOT NULL, `subscription_id` varchar(45) NOT NULL, `customer_id` varchar(255) NOT NULL, `active` tinyint(4) NOT NULL DEFAULT '0', `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` datetime DEFAULT CURRENT_TIMESTAMP, `amount` float NOT NULL, `next_payment_attempt` int(20) NOT NULL, `dydo_gateways_id` int(11) NOT NULL, PRIMARY KEY (`id`,`dydo_gateways_id`), UNIQUE KEY `id_UNIQUE` (`id`), KEY `subscription_id_UNIQUE` (`subscription_id`), KEY `fk_dydo_subscriptions_dydo_gateways_idx` (`dydo_gateways_id`), CONSTRAINT `fk_dydo_subscriptions_dydo_gateways` 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_subscriptions`;

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

Other tables from Dynamic Donations