wp_fbtc_messages

Static

Stores fbtc messages data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idint(11)NO
codevarchar(100)NO
ipvarchar(50)NO
namevarchar(500)NO
emailvarchar(500)NO
phonevarchar(100)NO
datevarchar(100)NO
read_on_datevarchar(100)NO
livevarchar(10)NO
contentTEXTNO

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