wp_accounts_payment_methods

Static

Stores accounts payment methods data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑IDint(11)NO
payment_methodvarchar(12)NO

CREATE TABLE Statement

CREATE TABLE wp_accounts_payment_methods ( ID int(11) NOT NULL AUTO_INCREMENT, payment_method varchar(12) NOT NULL, PRIMARY KEY (ID) ) {$wpdb->get_charset_collate()} AUTO_INCREMENT=1;", 'insert_row' => 'payment_method', 'insert' => array( 1 => 'Paypal', 2 => 'BACS', 3 => 'Cheque', 4 => 'Cash', 5 => 'Credit Card', 6 => 'Debit Card', 7 => 'Direct Debit' ) );

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_payment_methods`;

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

Other tables from Web:D Accounts