wp_invoice_customer
StaticStores invoice customer data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int(11) unsigned | NO |
| salutation | varchar(200) | YES |
| first_name | varchar(200) | YES |
| last_name | varchar(200) | YES |
| company | varchar(200) | YES |
| address | varchar(200) | YES |
| zip | varchar(50) | YES |
| city | varchar(200) | YES |
| country | varchar(200) | YES |
| varchar(200) | YES | |
| iban | varchar(200) | YES |
| bic | varchar(200) | YES |
| bank_name | varchar(200) | YES |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS `wp_invoice_customer` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `salutation` varchar(200) DEFAULT NULL, `first_name` varchar(200) DEFAULT NULL, `last_name` varchar(200) DEFAULT NULL, `company` varchar(200) DEFAULT NULL, `address` varchar(200) DEFAULT NULL, `zip` varchar(50) DEFAULT NULL, `city` varchar(200) DEFAULT NULL, `country` varchar(200) DEFAULT NULL, `mail` varchar(200) DEFAULT NULL, `iban` varchar(200) DEFAULT NULL, `bic` varchar(200) DEFAULT NULL, `bank_name` varchar(200) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE
Safe to delete?
If you have uninstalled PDF-Rechnungsverwaltung, 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_invoice_customer`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from PDF-Rechnungsverwaltung