File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed
src/infra/src/table/migration Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change 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
2121use sea_orm_migration:: prelude:: * ;
2222
Original file line number Diff line number Diff line change @@ -69,7 +69,6 @@ mod m20250801_000001_create_system_prompts_table;
6969mod m20250822_093713_add_updated_at_for_file_list_table;
7070mod m20250923_000001_update_enrichment_table_data_size;
7171mod m20250930_000001_create_pipeline_last_errors_table;
72- #[ cfg( feature = "enterprise" ) ]
7372mod m20251024_000001_add_alert_deduplication;
7473
7574pub 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 }
You can’t perform that action at this time.
0 commit comments