wp_fone_item_clients

Static

Stores fone item clients data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑item_client_idINT(11)NO
item_create_dateTIMESTAMPNO
client_idINT(1)NO
item_lookup_idINT(1)NO
item_client_priceDECIMAL(20,4)NO
item_tax_rate_idINT(11)YES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS `wp_fone_item_clients` ( `item_client_id` INT(11) NOT NULL AUTO_INCREMENT, `item_create_date` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP, `client_id` INT(1) NOT NULL DEFAULT '0', `item_lookup_id` INT(1) NOT NULL DEFAULT '0', `item_client_price` DECIMAL(20,4) NOT NULL DEFAULT '0.0000', `item_tax_rate_id` INT(11) NULL DEFAULT '0', PRIMARY KEY (`item_client_id`) USING BTREE, UNIQUE INDEX `client_id_item_lookup_id` (`client_id`, `item_lookup_id`) USING BTREE ) ".$charset_collate." ENGINE=InnoDB AUTO_INCREMENT=1; "; dbDelta( $sql );

Safe to delete?

If you have uninstalled FacturaONE para WooCommerce con VeriFactu, 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_fone_item_clients`;

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

Other tables from FacturaONE para WooCommerce con VeriFactu