wp_givasso_campaigns

Static

Stores givasso campaigns data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idBIGINT UNSIGNEDNO
titleVARCHAR(255)NO
slugVARCHAR(255)NO
descriptionTEXTYES
goal_amountDECIMAL(10,2)YES
currencyCHAR(3)NO
start_dateDATEYES
end_dateDATEYES
statusENUM('draft','active','ended','archived')NO
featured_imageBIGINT UNSIGNEDYES
created_atDATETIMENO
updated_atDATETIMENO

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