wp_ipenta_clients
StaticStores ipenta clients data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | INT | YES |
| name | VARCHAR(200) | NO |
| VARCHAR(200) | YES | |
| phone | VARCHAR(50) | YES |
| address | TEXT | YES |
| company | VARCHAR(200) | YES |
| vat_number | VARCHAR(50) | YES |
| notes | TEXT | YES |
| date_created | DATETIME | YES |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_ipenta_clients ( id INT AUTO_INCREMENT PRIMARY KEY, name VARCHAR(200) NOT NULL, email VARCHAR(200), phone VARCHAR(50), address TEXT, company VARCHAR(200), vat_number VARCHAR(50), 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_clients`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from SilverStream Invoicing