diff --git a/models/intermediate/core/int_core__active_property_managers_system.sql b/models/intermediate/core/int_core__active_property_managers_system.sql index 9782e72..6eb3c63 100644 --- a/models/intermediate/core/int_core__active_property_managers_system.sql +++ b/models/intermediate/core/int_core__active_property_managers_system.sql @@ -27,7 +27,7 @@ with group by 1, 2 ) select - it.display_name as pms_name, + it.display_name as active_pms_name, uh.id_user_host, uh.id_deal, uh.account_type, diff --git a/models/intermediate/core/schema.yml b/models/intermediate/core/schema.yml index 2b716da..7754971 100644 --- a/models/intermediate/core/schema.yml +++ b/models/intermediate/core/schema.yml @@ -5747,10 +5747,10 @@ models: It includes details about the host, their account type, company, billing information, and the number of accommodations they manage. columns: - - name: pms_name + - name: active_pms_name data_type: text description: | - The name of the property management system. + The name of the active property management system. data_tests: - not_null diff --git a/models/reporting/core/core__active_property_managers_system.sql b/models/reporting/core/core__active_property_managers_system.sql index 198df0e..68bcbed 100644 --- a/models/reporting/core/core__active_property_managers_system.sql +++ b/models/reporting/core/core__active_property_managers_system.sql @@ -3,7 +3,7 @@ with select * from {{ ref("int_core__active_property_managers_system") }} ) select - pms_name as pms_name, + active_pms_name as active_pms_name, id_user_host as id_user_host, id_deal as id_deal, account_type as account_type, diff --git a/models/reporting/core/schema.yml b/models/reporting/core/schema.yml index b4a9d31..bce9e5d 100644 --- a/models/reporting/core/schema.yml +++ b/models/reporting/core/schema.yml @@ -1928,10 +1928,10 @@ models: It includes details about the host, their account type, company, billing information, and the number of accommodations they manage. columns: - - name: pms_name + - name: active_pms_name data_type: text description: | - The name of the property management system. + The name of the active property management system. data_tests: - not_null