9 lines
340 B
Rust
9 lines
340 B
Rust
//! One-time data migrations.
|
|
//!
|
|
//! Currently just the onboarding backfill ([`onboarding`]), which folds the
|
|
//! legacy `repositories` and `dast_targets` collections into the unified
|
|
//! `onboarded_targets` collection, preserving `_id` so every downstream record
|
|
//! keyed by `repo_id` / `target_id` keeps resolving.
|
|
|
|
pub mod onboarding;
|