wp_givasso_subscriptions
StaticStores givasso subscriptions data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT UNSIGNED | NO |
| donor_id | BIGINT UNSIGNED | NO |
| stripe_subscription_id | VARCHAR(255) | NO |
| stripe_customer_id | VARCHAR(255) | NO |
| amount | DECIMAL(10,2) | NO |
| currency | CHAR(3) | NO |
| frequency | VARCHAR(20) | NO |
| status | ENUM('active','cancelled','past_due','unpaid') | NO |
| next_payment_at | DATETIME | YES |
| cancelled_at | DATETIME | YES |
| created_at | DATETIME | NO |
| updated_at | DATETIME | NO |
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