wp_accounts_invoice_status

Static

Stores analytics or statistics data.

Column Definitions

ColumnTypeNullable
🔑IDint(11)NO
statusvarchar(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