wp_ipenta_quote_responses
StaticStores ipenta quote responses data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | INT | YES |
| quote_id | INT | NO |
| token | VARCHAR(64) | YES |
| response | VARCHAR(20) | YES |
| response_note | TEXT | YES |
| response_count | INT | YES |
| responded_at | DATETIME | YES |
| date_created | DATETIME | YES |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_ipenta_quote_responses ( id INT AUTO_INCREMENT PRIMARY KEY, quote_id INT NOT NULL, token VARCHAR(64) UNIQUE, response VARCHAR(20) DEFAULT 'pending', response_note TEXT, response_count INT DEFAULT 0, responded_at DATETIME, date_created DATETIME DEFAULT CURRENT_TIMESTAMP) $c");
Safe to delete?
If you have uninstalled SilverStream Invoicing, 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_ipenta_quote_responses`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from SilverStream Invoicing