wp_accounts_payments
StaticStores accounts payments data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑ID | int(11) | NO |
| supplier | varchar(255) | NO |
| invoice_date | date | NO |
| amount | decimal(10, 2) | NO |
| reference | varchar(255) | YES |
| expense_type | int(11) | NO |
| date_paid | date | NO |
| payment_method | int(11) | NO |
| mileage | int(11) | YES |
| notes | text | YES |
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