wp_asnp_ewhatsapp_whatsapp
StaticStores asnp ewhatsapp whatsapp data created by this plugin.
Column Definitions
| Column | Type | Nullable |
|---|---|---|
| 🔑id | BIGINT(20) UNSIGNED | NO |
| name | varchar(200) | NO |
| type | varchar(20) | NO |
| status | TINYINT | NO |
| options | longtext | YES |
| name | varchar(200) | NO |
| type | varchar(10) | NO |
| accountNumber | text | YES |
| caption | varchar(20) | NO |
| customCaption | text | YES |
| alwaysOnline | TINYINT | NO |
| avatar | text | YES |
| availability | text | YES |
| textMessage | longtext | YES |
| useTimezone | TINYINT | NO |
| timezone | varchar(50) | NO |
| name | varchar(200) | NO |
| topic | text | YES |
| title | text | YES |
| content | longtext | YES |
| excerpt | longtext | YES |
| metaDescription | longtext | YES |
| headings | longtext | YES |
| topics | longtext | YES |
| tags | text | YES |
| excludeKeywords | text | YES |
| numberHeadings | INT UNSIGNED | NO |
| numberContent | INT UNSIGNED | NO |
| typeContent | varchar(20) | NO |
| contentlang | varchar(20) | NO |
| contentStyle | varchar(20) | NO |
| contentTone | varchar(20) | NO |
| temperature | varchar(8) | NO |
| maxTokenContent | BIGINT(20) UNSIGNED | NO |
| modelContent | varchar(200) | NO |
| promptTitle | longtext | YES |
| promptHeadings | longtext | YES |
| promptContent | longtext | YES |
| promptExcerpt | longtext | YES |
| promptMetaDescription | longtext | YES |
| promptTags | longtext | YES |
| useTopics | TINYINT | NO |
| name | varchar(200) | NO |
| description | longtext | YES |
| options | longtext | YES |
CREATE TABLE Statement
CREATE TABLE wp_asnp_ewhatsapp_whatsapp ( id BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT, name varchar(200) NOT NULL DEFAULT '', type varchar(20) NOT NULL DEFAULT '', status TINYINT NOT NULL DEFAULT '1', options longtext NULL, PRIMARY KEY (id) ) $collate; CREATE TABLE wp_asnp_ewhatsapp_account ( id BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT, name varchar(200) NOT NULL DEFAULT '', type varchar(10) NOT NULL DEFAULT '', accountNumber text NULL, caption varchar(20) NOT NULL DEFAULT '', customCaption text NULL, alwaysOnline TINYINT NOT NULL DEFAULT '1', avatar text NULL, availability text NULL, textMessage longtext NULL, useTimezone TINYINT NOT NULL DEFAULT '0', timezone varchar(50) NOT NULL DEFAULT '', PRIMARY KEY (id) ) $collate; CREATE TABLE wp_asnp_ewhatsapp_ai_content_layout ( id BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT, name varchar(200) NOT NULL DEFAULT '', topic text NULL, title text NULL, content longtext NULL, excerpt longtext NULL, metaDescription longtext NULL, headings longtext NULL, topics longtext NULL, tags text NULL, keywords text NULL, excludeKeywords text NULL, numberHeadings INT UNSIGNED NOT NULL DEFAULT 2, numberContent INT UNSIGNED NOT NULL DEFAULT 3, typeContent varchar(20) NOT NULL DEFAULT 'post', contentlang varchar(20) NOT NULL DEFAULT 'English', contentStyle varchar(20) NOT NULL DEFAULT 'creative', contentTone varchar(20) NOT NULL DEFAULT 'creative', temperature varchar(8) NOT NULL DEFAULT '', maxTokenContent BIGINT(20) UNSIGNED NOT NULL DEFAULT 2048, modelContent varchar(200) NOT NULL DEFAULT '', promptTitle longtext NULL, promptHeadings longtext NULL, promptContent longtext NULL, promptExcerpt longtext NULL, promptMetaDescription longtext NULL, promptTags longtext NULL, useTopics TINYINT NOT NULL DEFAULT 0, PRIMARY KEY (id) ) $collate; CREATE TABLE wp_asnp_ewhatsapp_ai_image_layout ( id BIGINT(20) UNSIGNED NOT NULL AUTO_INCREMENT, name varchar(200) NOT NULL DEFAULT '', description longtext NULL, options longtext NULL, PRIMARY KEY (id) ) $collate;"; return $tables; } /** * Update plugin version to current. */ private static function update_version() { update_option( self::VERSION_OPTION, get_plugin()->version );Safe to delete?
If you have uninstalled AI Content Writing and Chat with ChatGPT, 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_asnp_ewhatsapp_whatsapp`;
Run this query using phpMyAdmin, Adminer, or your MySQL client. Back up first.
Other tables from AI Content Writing and Chat with ChatGPT