wp_iklaviyoef_log

Static

A logging table that records activity, events, or audit history.

Column Definitions

ColumnTypeNullable
🔑idint(11) unsignedNO
flow_idbigint(20)YES
job_idbigint(20)YES
api_typevarchar(255)YES
response_typevarchar(50)YES
response_objLONGTEXTYES
created_atDATETIMENO
namevarchar(255)YES
triggered_entityvarchar(50)NO
triggered_entity_idvarchar(100)YES
statustinyint(1)YES
1enabledYES
2trashedYES
user_ipint(11) unsignedYES
created_atdatetimeYES
updated_atdatetimeYES

CREATE TABLE Statement

CREATE TABLE IF NOT EXISTS `wp_iklaviyoef_log` ( `id` int(11) unsigned NOT NULL AUTO_INCREMENT, `flow_id` bigint(20) DEFAULT NULL, `job_id` bigint(20) DEFAULT NULL, `api_type` varchar(255) DEFAULT NULL, `response_type` varchar(50) DEFAULT NULL, `response_obj` LONGTEXT DEFAULT NULL, `created_at` DATETIME NOT NULL, PRIMARY KEY (`id`), KEY `flow_id` (`flow_id`) ) $collate;", "CREATE TABLE IF NOT EXISTS `wp_iklaviyoef_flow` ( `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(255) DEFAULT NULL, `triggered_entity` varchar(50) NOT NULL, `triggered_entity_id` varchar(100) DEFAULT NULL, /* form_id = 0 means all/app */ `flow_details` longtext DEFAULT NULL, `status` tinyint(1) DEFAULT 1,/* 0 disabled, 1 enabled, 2 trashed */ `user_id` bigint(20) unsigned DEFAULT NULL, `user_ip` int(11) unsigned DEFAULT NULL, `created_at` datetime DEFAULT NULL, `updated_at` datetime DEFAULT NULL, PRIMARY KEY (`id`) ) $collate;" ]; include_once ABSPATH . 'wp-admin/includes/upgrade.php'; foreach ($table_schema as $table) { dbDelta($table);

Safe to delete?

If you have uninstalled Integrations of Klaviyo with Elementor form, 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_iklaviyoef_log`;

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

Other tables from Integrations of Klaviyo with Elementor form