Skip to content

Commit 50c902c

Browse files
committed
fix
1 parent aa6aec4 commit 50c902c

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

src/infra/src/table/migration/m20251024_000001_add_alert_deduplication.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515

1616
//! Adds alert deduplication columns and creates alert_dedup_state table
1717
//!
18-
//! **ENTERPRISE FEATURE**: This migration only runs when compiled with the `enterprise` feature.
19-
//! Alert deduplication is an enterprise-only feature.
18+
//! Note: These columns exist in all builds but the deduplication logic
19+
//! is only available in the enterprise edition. The columns default to disabled.
2020
2121
use sea_orm_migration::prelude::*;
2222

src/infra/src/table/migration/mod.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,6 @@ mod m20250801_000001_create_system_prompts_table;
6969
mod m20250822_093713_add_updated_at_for_file_list_table;
7070
mod m20250923_000001_update_enrichment_table_data_size;
7171
mod m20250930_000001_create_pipeline_last_errors_table;
72-
#[cfg(feature = "enterprise")]
7372
mod m20251024_000001_add_alert_deduplication;
7473

7574
pub struct Migrator;
@@ -129,7 +128,6 @@ impl MigratorTrait for Migrator {
129128
Box::new(m20250822_093713_add_updated_at_for_file_list_table::Migration),
130129
Box::new(m20250923_000001_update_enrichment_table_data_size::Migration),
131130
Box::new(m20250930_000001_create_pipeline_last_errors_table::Migration),
132-
#[cfg(feature = "enterprise")]
133131
Box::new(m20251024_000001_add_alert_deduplication::Migration),
134132
]
135133
}

0 commit comments

Comments
 (0)