wp_unipixel_platform_settings

Static

Stores unipixel platform settings data created by this plugin.

Column Definitions

ColumnTypeNullable
idINTNO
platform_nameVARCHAR(255)YES
pixel_idVARCHAR(255)YES
access_tokenVARCHAR(512)YES
platform_enabledTINYINT(1)YES
additional_idVARCHAR(255)YES
pixel_settingVARCHAR(255)YES
pageview_send_serversideTINYINT(1)YES
pageview_send_clientsideTINYINT(1)YES
serverside_global_enabledTINYINT(1)NO

CREATE TABLE Statement

CREATE TABLE wp_unipixel_platform_settings ( id INT NOT NULL, platform_name VARCHAR(255), pixel_id VARCHAR(255), access_token VARCHAR(512), platform_enabled TINYINT(1) DEFAULT 1, additional_id VARCHAR(255) DEFAULT '', pixel_setting VARCHAR(255) DEFAULT 'include', pageview_send_serverside TINYINT(1) DEFAULT 1, pageview_send_clientside TINYINT(1) DEFAULT 1, serverside_global_enabled TINYINT(1) NOT NULL DEFAULT 0, PRIMARY KEY (id) );

Safe to delete?

If you have uninstalled UniPixel: Meta, Pinterest, TikTok, Google & Microsoft Server-Side Tracking for WooCommerce, 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_unipixel_platform_settings`;

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

Other tables from UniPixel: Meta, Pinterest, TikTok, Google & Microsoft Server-Side Tracking for WooCommerce