diff --git a/models/intermediate/core/int_core__new_dash_user_overview.sql b/models/intermediate/core/int_core__new_dash_user_overview.sql index ac5e1cd..3d446d3 100644 --- a/models/intermediate/core/int_core__new_dash_user_overview.sql +++ b/models/intermediate/core/int_core__new_dash_user_overview.sql @@ -87,6 +87,7 @@ with select upb.id_user_host, uh.id_deal, + uh.has_user_moved_from_old_dash, uh.new_dash_version as user_migration_phase, uh.user_in_new_dash_since_date_utc as user_estimated_migration_date_utc, uh.company_name, @@ -111,6 +112,7 @@ with select id_user_host, id_deal, + has_user_moved_from_old_dash, user_migration_phase, user_estimated_migration_date_utc, company_name, diff --git a/models/intermediate/core/schema.yml b/models/intermediate/core/schema.yml index aa2b00d..cbe7b13 100644 --- a/models/intermediate/core/schema.yml +++ b/models/intermediate/core/schema.yml @@ -2332,6 +2332,12 @@ models: tests: - not_null + - name: has_user_moved_from_old_dash + data_type: boolean + description: | + Flag to determine if this user host is in New Dash and has + been moved from the old dash. + - name: user_estimated_migration_date_utc data_type: date description: | diff --git a/models/reporting/core/core__new_dash_user_overview.sql b/models/reporting/core/core__new_dash_user_overview.sql index b5b268c..a590328 100644 --- a/models/reporting/core/core__new_dash_user_overview.sql +++ b/models/reporting/core/core__new_dash_user_overview.sql @@ -5,6 +5,7 @@ with select id_user_host as id_user_host, id_deal as id_deal, + has_user_moved_from_old_dash as has_user_moved_from_old_dash, user_migration_phase as user_migration_phase, user_estimated_migration_date_utc as user_estimated_migration_date_utc, company_name as company_name, diff --git a/models/reporting/core/schema.yml b/models/reporting/core/schema.yml index b1f9d74..5d9e23f 100644 --- a/models/reporting/core/schema.yml +++ b/models/reporting/core/schema.yml @@ -1137,6 +1137,12 @@ models: tests: - not_null + - name: has_user_moved_from_old_dash + data_type: boolean + description: | + Flag to determine if this user host is in New Dash and has + been moved from the old dash. + - name: user_estimated_migration_date_utc data_type: date description: |