wp_ffl_dealers

Static

Stores ffl dealers data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idint(11)NO
license_numbervarchar(30)NO
short_licvarchar(12)NO
license_namevarchar(100)NO
business_namevarchar(100)NO
premise_streetvarchar(50)NO
premise_cityvarchar(30)NO
premise_statevarchar(20)NO
premise_zip_codevarchar(10)NO
latvarchar(20)NO
lngvarchar(20)NO
voice_phonevarchar(15)NO
check_statusTINYINT(1)NO
default_dealerTINYINT(1)NO

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS `wp_ffl_dealers` ( `id` int(11) NOT NULL AUTO_INCREMENT, `license_number` varchar(30) NOT NULL, `short_lic` varchar(12) NOT NULL, `license_name` varchar(100) NOT NULL, `business_name` varchar(100) NOT NULL, `premise_street` varchar(50) NOT NULL, `premise_city` varchar(30) NOT NULL, `premise_state` varchar(20) NOT NULL, `premise_zip_code` varchar(10) NOT NULL, `lat` varchar(20) NOT NULL, `lng` varchar(20) NOT NULL, `voice_phone` varchar(15) NOT NULL, `check_status` TINYINT(1) NOT NULL DEFAULT '0', `default_dealer` TINYINT(1) NOT NULL DEFAULT '0', PRIMARY KEY (`id`) )$charset_collate;"; if (!function_exists('dbDelta')) { require_once ABSPATH . 'wp-admin/includes/upgrade.php'; } dbDelta($firegun_delear);

Safe to delete?

If you have uninstalled FFL Dealers, 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_ffl_dealers`;

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