wp_givasso_subscriptions

Static

Stores givasso subscriptions data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idBIGINT UNSIGNEDNO
donor_idBIGINT UNSIGNEDNO
stripe_subscription_idVARCHAR(255)NO
stripe_customer_idVARCHAR(255)NO
amountDECIMAL(10,2)NO
currencyCHAR(3)NO
frequencyVARCHAR(20)NO
statusENUM('active','cancelled','past_due','unpaid')NO
next_payment_atDATETIMEYES
cancelled_atDATETIMEYES
created_atDATETIMENO
updated_atDATETIMENO

CREATE TABLE Statement

CREATE TABLE wp_givasso_subscriptions ( id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, donor_id BIGINT UNSIGNED NOT NULL, stripe_subscription_id VARCHAR(255) NOT NULL, stripe_customer_id VARCHAR(255) NOT NULL, amount DECIMAL(10,2) NOT NULL, currency CHAR(3) NOT NULL DEFAULT 'EUR', frequency VARCHAR(20) NOT NULL, status ENUM('active','cancelled','past_due','unpaid') NOT NULL DEFAULT 'active', next_payment_at DATETIME DEFAULT NULL, cancelled_at DATETIME 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), UNIQUE KEY uq_stripe_sub (stripe_subscription_id), KEY idx_donor (donor_id), KEY idx_status (status) ) $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_subscriptions`;

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

Other tables from Givasso