wp_invoice_customer

Static

Stores invoice customer data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idint(11) unsignedNO
salutationvarchar(200)YES
first_namevarchar(200)YES
last_namevarchar(200)YES
companyvarchar(200)YES
addressvarchar(200)YES
zipvarchar(50)YES
cityvarchar(200)YES
countryvarchar(200)YES
mailvarchar(200)YES
ibanvarchar(200)YES
bicvarchar(200)YES
bank_namevarchar(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