69 lines
2.7 KiB
PHP
69 lines
2.7 KiB
PHP
<?php
|
|
|
|
namespace FluentCrmMigrations;
|
|
|
|
class FunnelMetrics
|
|
{
|
|
/**
|
|
* Migrate the table.
|
|
*
|
|
* @param bool $isForced
|
|
* @return void
|
|
*/
|
|
public static function migrate()
|
|
{
|
|
global $wpdb;
|
|
|
|
$charsetCollate = $wpdb->get_charset_collate();
|
|
|
|
$table = $wpdb->prefix . 'fc_funnel_metrics';
|
|
|
|
$indexPrefix = $wpdb->prefix . 'fc_fmx_';
|
|
|
|
// phpcs:ignore WordPress.DB.PreparedSQL.InterpolatedNotPrepared
|
|
if ($wpdb->get_var("SHOW TABLES LIKE '$table'") != $table) {
|
|
// phpcs:ignore WordPress.DB.PreparedSQL.InterpolatedNotPrepared
|
|
$sql = "CREATE TABLE $table (
|
|
`id` BIGINT UNSIGNED NOT NULL PRIMARY KEY AUTO_INCREMENT,
|
|
`funnel_id` BIGINT UNSIGNED NULL,
|
|
`sequence_id` BIGINT UNSIGNED NULL,
|
|
`subscriber_id` BIGINT UNSIGNED NULL,
|
|
`benchmark_value` BIGINT UNSIGNED DEFAULT 0,
|
|
`benchmark_currency` VARCHAR(10) DEFAULT 'USD',
|
|
`status` VARCHAR(50) DEFAULT 'completed',
|
|
`notes` TEXT NULL,
|
|
`created_at` TIMESTAMP NULL,
|
|
`updated_at` TIMESTAMP NULL,
|
|
INDEX `{$indexPrefix}_m_idx` (`funnel_id` ASC),
|
|
INDEX `{$indexPrefix}_ms__idx` (`subscriber_id` ASC),
|
|
KEY `sequence_id` (`sequence_id`),
|
|
KEY `status` (`status`),
|
|
UNIQUE KEY `funnel_seq_subscriber_unique` (`funnel_id`, `sequence_id`, `subscriber_id`)
|
|
) $charsetCollate;";
|
|
dbDelta($sql);
|
|
} else {
|
|
|
|
// phpcs:ignore WordPress.DB.PreparedSQL.InterpolatedNotPrepared
|
|
$indexes = $wpdb->get_results("SHOW INDEX FROM $table");
|
|
$indexedColumns = [];
|
|
foreach ($indexes as $index) {
|
|
$indexedColumns[] = $index->Column_name;
|
|
}
|
|
|
|
if(!in_array('sequence_id', $indexedColumns)) {
|
|
// phpcs:ignore WordPress.DB.PreparedSQL.InterpolatedNotPrepared
|
|
$indexSql = "ALTER TABLE {$table} ADD INDEX `sequence_id` (`sequence_id`),
|
|
ADD INDEX `status` (`status`);";
|
|
// phpcs:ignore WordPress.DB.PreparedSQL.NotPrepared
|
|
$wpdb->query($indexSql);
|
|
}
|
|
|
|
// Composite unique index for idempotency enforcement. The sweep +
|
|
// dedupe + ADD UNIQUE KEY convergence lives in one place —
|
|
// DbPerformanceService, shared with the runtime index health-check /
|
|
// repair path — so the two can never drift.
|
|
\FluentCrm\App\Services\DbPerformanceService::ensureCriticalIndex('funnel_seq_subscriber_unique');
|
|
}
|
|
}
|
|
}
|