wp_ipenta_notes

Static

Stores ipenta notes data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idINTYES
client_idINTYES
client_nameVARCHAR(200)YES
noteTEXTYES
follow_up_dateDATEYES
follow_up_doneTINYINTYES
created_byINTYES
date_createdDATETIMEYES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS wp_ipenta_notes ( id INT AUTO_INCREMENT PRIMARY KEY, client_id INT DEFAULT 0, client_name VARCHAR(200), note TEXT, follow_up_date DATE, follow_up_done TINYINT DEFAULT 0, created_by INT DEFAULT 0, 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_notes`;

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

Other tables from SilverStream Invoicing