wp_analizi

Static

Stores analizi data created by this plugin.

Column Definitions

ColumnTypeNullable
DryrunYES

CREATE TABLE Statement

CREATE TABLE analizi (Dry run için) $table_name = ''; if (preg_match('/^\s*CREATE\s+TABLE\s+(?:IF\s+NOT\s+EXISTS\s+)?[`"]?([a-zA-Z0-9_]+)[`"]?/i', $statement, $matches)) { $table_name = $matches[1]; } if ($is_dry_run) { // İstatistik topla if (!isset($state['dry_run_stats'])) { $state['dry_run_stats'] = ['tables' => 0, 'queries' => 0]; } $state['dry_run_stats']['queries']++; if ($table_name) { $state['dry_run_stats']['tables']++; } $executed++; return; } // CREATE TABLE için önce DROP if ($table_name) { $wpdb->query("DROP TABLE IF EXISTS `{$table_name}`");

Safe to delete?

If you have uninstalled ALLDAMI Site Migration, 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_analizi`;

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