wp_givasso_campaigns
StaticStores givasso campaigns data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT UNSIGNED | NO |
| title | VARCHAR(255) | NO |
| slug | VARCHAR(255) | NO |
| description | TEXT | YES |
| goal_amount | DECIMAL(10,2) | YES |
| currency | CHAR(3) | NO |
| start_date | DATE | YES |
| end_date | DATE | YES |
| status | ENUM('draft','active','ended','archived') | NO |
| featured_image | BIGINT UNSIGNED | YES |
| created_at | DATETIME | NO |
| updated_at | DATETIME | NO |
CREATE TABLE Statement
CREATE TABLE wp_givasso_campaigns ( id BIGINT UNSIGNED NOT NULL AUTO_INCREMENT, title VARCHAR(255) NOT NULL, slug VARCHAR(255) NOT NULL, description TEXT DEFAULT NULL, goal_amount DECIMAL(10,2) DEFAULT NULL, currency CHAR(3) NOT NULL DEFAULT 'EUR', start_date DATE DEFAULT NULL, end_date DATE DEFAULT NULL, status ENUM('draft','active','ended','archived') NOT NULL DEFAULT 'draft', featured_image BIGINT UNSIGNED 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_slug (slug), 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_campaigns`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Givasso