wp_accounts_invoice_status
StaticStores analytics or statistics data.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑ID | int(11) | NO |
| status | varchar(9) | NO |
CREATE TABLE Statement
CREATE TABLE wp_accounts_invoice_status ( ID int(11) NOT NULL AUTO_INCREMENT, status varchar(9) NOT NULL, PRIMARY KEY (ID) ) {$wpdb->get_charset_collate()} AUTO_INCREMENT=1;", 'insert_row' => 'status', 'insert' => array( 1 => 'Unpaid', 2 => 'Paid', 3 => 'Cancelled' ) );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_invoice_status`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Web:D Accounts