wp_ipenta_expenses

Static

Stores ipenta expenses data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idINTYES
descriptionVARCHAR(200)NO
categoryVARCHAR(100)YES
amountDECIMAL(12,2)YES
tax_amountDECIMAL(12,2)YES
supplierVARCHAR(200)YES
referenceVARCHAR(100)YES
date_expenseDATEYES
receipt_urlVARCHAR(500)YES
notesTEXTYES
date_createdDATETIMEYES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_ipenta_expenses ( id INT AUTO_INCREMENT PRIMARY KEY, description VARCHAR(200) NOT NULL, category VARCHAR(100), amount DECIMAL(12,2) DEFAULT 0, tax_amount DECIMAL(12,2) DEFAULT 0, supplier VARCHAR(200), reference VARCHAR(100), date_expense DATE, receipt_url VARCHAR(500), notes TEXT, 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_expenses`;

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

Other tables from SilverStream Invoicing