wp_accounts_payments

Static

Stores accounts payments data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑IDint(11)NO
suppliervarchar(255)NO
invoice_datedateNO
amountdecimal(10, 2)NO
referencevarchar(255)YES
expense_typeint(11)NO
date_paiddateNO
payment_methodint(11)NO
mileageint(11)YES
notestextYES

CREATE TABLE Statement

CREATE TABLE wp_accounts_payments ( ID int(11) NOT NULL AUTO_INCREMENT, supplier varchar(255) NOT NULL, invoice_date date NOT NULL, amount decimal(10, 2) NOT NULL, reference varchar(255) DEFAULT NULL, expense_type int(11) NOT NULL, date_paid date NOT NULL, payment_method int(11) NOT NULL, mileage int(11) DEFAULT '0', notes text DEFAULT NULL, PRIMARY KEY (ID) ) {$wpdb->get_charset_collate()} AUTO_INCREMENT=1;" );

Safe to delete?

If you have uninstalled Web:D Accounts, 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_accounts_payments`;

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

Other tables from Web:D Accounts