wp_ficoo_fic_clients_table
StaticStores ficoo fic clients table data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑table_id | bigint(20) | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS wp_ficoo_fic_clients_table ( table_id bigint(20) NOT NULL AUTO_INCREMENT,"; foreach ( $columns as $column ) { if ( empty( $column ) ) { continue; } $column = sanitize_key( $column );Safe to delete?
If you have uninstalled Ficoo – Fatture in Cloud per WooCommerce, 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_ficoo_fic_clients_table`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.