wp_elyncoct_chat_buttons

Static

Stores elyncoct chat buttons data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idbigint(20)NO
namevarchar(255)NO
typevarchar(50)NO
statusvarchar(50)NO
optionslongtextNO
created_atdatetimeNO

CREATE TABLE Statement

CREATE TABLE `wp_elyncoct_chat_buttons` ( id bigint(20) NOT NULL AUTO_INCREMENT, name varchar(255) NOT NULL, type varchar(50) NOT NULL, status varchar(50) NOT NULL DEFAULT 'active', options longtext NOT NULL, created_at datetime DEFAULT '0000-00-00 00:00:00' NOT NULL, PRIMARY KEY (id) ) $charset_collate;"; require_once(ABSPATH . 'wp-admin/includes/upgrade.php');

Safe to delete?

If you have uninstalled Elynt Contact CTA Button, 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_elyncoct_chat_buttons`;

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