wp_elyncoct_chat_buttons
StaticStores elyncoct chat buttons data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | bigint(20) | NO |
| name | varchar(255) | NO |
| type | varchar(50) | NO |
| status | varchar(50) | NO |
| options | longtext | NO |
| created_at | datetime | NO |
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.