wp_aime_modules

Static

Stores aime modules data created by this plugin.

Column Definitions

ColumnTypeNullable
🔑idbigint(20) unsignedNO
module_idvarchar(50)NO
is_activetinyint(1)NO
settingslongtextYES
activated_atdatetimeYES
updated_atdatetimeYES
module_idvarchar(50)YES
levelvarchar(20)NO
messagetextNO
contextlongtextYES
created_atdatetimeNO

CREATE TABLE Statement

CREATE TABLE wp_aime_modules ( id bigint(20) unsigned NOT NULL AUTO_INCREMENT, module_id varchar(50) NOT NULL, is_active tinyint(1) NOT NULL DEFAULT 1, settings longtext, activated_at datetime DEFAULT NULL, updated_at datetime DEFAULT NULL, PRIMARY KEY (id), UNIQUE KEY idx_module_id (module_id) ) {$charset_collate};"; // Activity log. $tables[] = "CREATE TABLE wp_aime_log ( id bigint(20) unsigned NOT NULL AUTO_INCREMENT, module_id varchar(50) DEFAULT 'core', level varchar(20) NOT NULL DEFAULT 'info', message text NOT NULL, context longtext, created_at datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, PRIMARY KEY (id), KEY idx_module (module_id), KEY idx_level (level), KEY idx_created (created_at) ) {$charset_collate};"; foreach ( $tables as $sql ) { dbDelta( $sql );

Safe to delete?

If you have uninstalled AI Marketing Expert — AI Email Marketing, Content Generator, SEO Analyzer, Social Media & Chatbot, 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_aime_modules`;

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

Other tables from AI Marketing Expert — AI Email Marketing, Content Generator, SEO Analyzer, Social Media & Chatbot