wp_ar_compression_log

Static

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

CREATE TABLE Statement

CREATE TABLE `wp_ar_compression_log` (\n  `id` bigint unsigned NOT NULL AUTO_INCREMENT,\n  `post_id` bigint unsigned NOT NULL,\n  `original_file` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `compressed_file` varchar(255) COLLATE utf8mb4_unicode_520_ci NOT NULL,\n  `original_size` bigint unsigned NOT NULL DEFAULT '0',\n  `compressed_size` bigint unsigned NOT NULL DEFAULT '0',\n  `compression_ratio` float NOT NULL DEFAULT '0',\n  `format` varchar(10) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'glb',\n  `quality` int NOT NULL DEFAULT '85',\n  `status` varchar(20) COLLATE utf8mb4_unicode_520_ci NOT NULL DEFAULT 'pending',\n  `error_message` text COLLATE utf8mb4_unicode_520_ci,\n  `compression_time` int unsigned DEFAULT NULL,\n  `created_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP,\n  `updated_at` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,\n  PRIMARY KEY (`id`),\n  KEY `post_id` (`post_id`),\n  KEY `status` (`status`),\n  KEY `format` (`format`),\n  KEY `created_at` (`created_at`)\n) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_520_ci

Safe to delete?

If you have uninstalled 3D Viewer – 3D Model Viewer – Augmented Reality, 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_ar_compression_log`;

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

Other tables from 3D Viewer – 3D Model Viewer – Augmented Reality