wp_fbtc_messages
StaticStores fbtc messages data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | int(11) | NO |
| code | varchar(100) | NO |
| ip | varchar(50) | NO |
| name | varchar(500) | NO |
| varchar(500) | NO | |
| phone | varchar(100) | NO |
| date | varchar(100) | NO |
| read_on_date | varchar(100) | NO |
| live | varchar(10) | NO |
| content | TEXT | NO |
CREATE TABLE Statement
CREATE TABLE IF NOT EXISTS `fbtc_messages` ( `id` int(11) NOT NULL auto_increment, `code` varchar(100) NOT NULL, `ip` varchar(50) NOT NULL, `name` varchar(500) NOT NULL, `email` varchar(500) NOT NULL, `phone` varchar(100) NOT NULL, `date` varchar(100) NOT NULL, `read_on_date` varchar(100) NOT NULL, `live` varchar(10) NOT NULL, `content` TEXT NOT NULL, PRIMARY KEY (`id`) ) ENGINE
Safe to delete?
If you have uninstalled Text Message Contact Form, 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_fbtc_messages`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from Text Message Contact Form