wp_ipenta_notes
StaticStores ipenta notes data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | INT | YES |
| client_id | INT | YES |
| client_name | VARCHAR(200) | YES |
| note | TEXT | YES |
| follow_up_date | DATE | YES |
| follow_up_done | TINYINT | YES |
| created_by | INT | YES |
| date_created | DATETIME | YES |
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