wp_ipenta_quote_responses

Static

Stores ipenta quote responses data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idINTYES
quote_idINTNO
tokenVARCHAR(64)YES
responseVARCHAR(20)YES
response_noteTEXTYES
response_countINTYES
responded_atDATETIMEYES
date_createdDATETIMEYES

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