From b3620cc695368f20f2cc4b175a3ec83ec00eb7a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oriol=20Roqu=C3=A9=20Paniagua?= Date: Fri, 20 Sep 2024 10:42:12 +0000 Subject: [PATCH] Merged PR 2920: Adapt user migration configuration to take into account V2 migrated users # Description Prepares setup to automatically detect V2 migrated users from old dash to new dash by using the new claim type KygMoveDate. # Checklist - [X] The edited models and dependants run properly with production data. **Works well with current setup but there's no migrated users yet. We'll need to double check once the launch date has happened** - [ ] The edited models are sufficiently documented. **N/A** - [ ] The edited models contain PK tests, and I've ran and passed them. **N/A** - [ ] I have checked for DRY opportunities with other models and docs. **N/A** - [ ] I've picked the right materialization for the affected models. **N/A** # Other - [ ] Check if a full-refresh is required after this PR is merged. Related work items: #20810 --- macros/user_migration_configuration.sql | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/macros/user_migration_configuration.sql b/macros/user_migration_configuration.sql index af96260..cb46c49 100644 --- a/macros/user_migration_configuration.sql +++ b/macros/user_migration_configuration.sql @@ -30,12 +30,18 @@ Important note: if a user migrates once a phase has started, we "phase_name": "MVP", "claim_type": "KYGMVP", "default_deployment_date": "2024-07-30", - "claim_enforcement_priority": 1, + "claim_enforcement_priority": 2, }, { "phase_name": "MVP", "claim_type": "MVPMIGRATEDUSER", "default_deployment_date": "2024-09-10", + "claim_enforcement_priority": 1, + }, + { + "phase_name": "V2", + "claim_type": "KYGMOVEDATE", + "default_deployment_date": "2024-10-08", "claim_enforcement_priority": 0, }, ] %}