wp_ipenta_quotes

Static

Stores ipenta quotes data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idINTYES
quote_numberVARCHAR(50)YES
client_idINTYES
client_nameVARCHAR(200)YES
client_emailVARCHAR(200)YES
client_addressTEXTYES
client_companyVARCHAR(200)YES
itemsLONGTEXTYES
subtotalDECIMAL(12,2)YES
tax_enabledTINYINTYES
tax_rateDECIMAL(5,2)YES
tax_amountDECIMAL(12,2)YES
totalDECIMAL(12,2)YES
notesTEXTYES
statusVARCHAR(20)YES
date_issuedDATEYES
date_validDATEYES
date_createdDATETIMEYES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_ipenta_quotes ( id INT AUTO_INCREMENT PRIMARY KEY, quote_number VARCHAR(50) UNIQUE, client_id INT DEFAULT 0, client_name VARCHAR(200), client_email VARCHAR(200), client_address TEXT, client_company VARCHAR(200), items LONGTEXT, subtotal DECIMAL(12,2) DEFAULT 0, tax_enabled TINYINT DEFAULT 0, tax_rate DECIMAL(5,2) DEFAULT 0, tax_amount DECIMAL(12,2) DEFAULT 0, total DECIMAL(12,2) DEFAULT 0, notes TEXT, status VARCHAR(20) DEFAULT 'draft', date_issued DATE, date_valid DATE, 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_quotes`;

Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.

Other tables from SilverStream Invoicing