wp_asnp_ewhatsapp_whatsapp

Static

Stores asnp ewhatsapp whatsapp data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idBIGINT(20) UNSIGNEDNO
namevarchar(200)NO
typevarchar(20)NO
statusTINYINTNO
optionslongtextYES
namevarchar(200)NO
typevarchar(10)NO
accountNumbertextYES
captionvarchar(20)NO
customCaptiontextYES
alwaysOnlineTINYINTNO
avatartextYES
availabilitytextYES
textMessagelongtextYES
useTimezoneTINYINTNO
timezonevarchar(50)NO
namevarchar(200)NO
topictextYES
titletextYES
contentlongtextYES
excerptlongtextYES
metaDescriptionlongtextYES
headingslongtextYES
topicslongtextYES
tagstextYES
excludeKeywordstextYES
numberHeadingsINT UNSIGNEDNO
numberContentINT UNSIGNEDNO
typeContentvarchar(20)NO
contentlangvarchar(20)NO
contentStylevarchar(20)NO
contentTonevarchar(20)NO
temperaturevarchar(8)NO
maxTokenContentBIGINT(20) UNSIGNEDNO
modelContentvarchar(200)NO
promptTitlelongtextYES
promptHeadingslongtextYES
promptContentlongtextYES
promptExcerptlongtextYES
promptMetaDescriptionlongtextYES
promptTagslongtextYES
useTopicsTINYINTNO
namevarchar(200)NO
descriptionlongtextYES
optionslongtextYES

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