From 93ff3d11e8b769a93fcb1507108224c12099b10f Mon Sep 17 00:00:00 2001 From: Joe Markiewicz <74217849+fivetran-joemarkiewicz@users.noreply.github.com> Date: Wed, 25 Feb 2026 14:11:27 -0600 Subject: [PATCH 1/2] Readme and persist docs update --- README.md | 17 ++--------------- integration_tests/dbt_project.yml | 4 ++-- 2 files changed, 4 insertions(+), 17 deletions(-) diff --git a/README.md b/README.md index 533742a..9fd5013 100644 --- a/README.md +++ b/README.md @@ -1,21 +1,6 @@ # App Reporting dbt Package -
- This dbt package unifies and aggregates data from Fivetran's Apple App Store and Google Play connectors into analytics-ready tables. ## Resources @@ -29,6 +14,8 @@ This dbt package unifies and aggregates data from Fivetran's Apple App Store and - [dbt Docs](https://fivetran.github.io/dbt_app_reporting/#!/overview) - [DAG](https://fivetran.github.io/dbt_app_reporting/#!/overview?g_v=1) - [Changelog](https://github.com/fivetran/dbt_app_reporting/blob/main/CHANGELOG.md) +- dbt Core™ supported versions + - `>=1.3.0, <3.0.0` ## What does this dbt package do? This package enables you to standardize schemas from various app platform connectors and create reporting models for all activity aggregated to the device, country, OS version, app version, and traffic source levels. It creates enriched models with metrics focused on app performance, user engagement, and platform-specific analytics. diff --git a/integration_tests/dbt_project.yml b/integration_tests/dbt_project.yml index 3054b9a..b2ed7a8 100644 --- a/integration_tests/dbt_project.yml +++ b/integration_tests/dbt_project.yml @@ -49,8 +49,8 @@ dispatch: models: +persist_docs: - relation: "{{ false if target.type in ('spark','databricks') else true }}" - columns: "{{ false if target.type in ('spark','databricks') else true }}" + relation: true + columns: true +schema: "app_reporting_{{ var('directed_schema','dev') }}" ## To be used for validation testing seeds: From c72ea58a03228131c77246361132cd47ccefc1ab Mon Sep 17 00:00:00 2001 From: Joe Markiewicz <74217849+fivetran-joemarkiewicz@users.noreply.github.com> Date: Thu, 26 Feb 2026 15:40:26 -0600 Subject: [PATCH 2/2] persist_docs conditional --- integration_tests/dbt_project.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration_tests/dbt_project.yml b/integration_tests/dbt_project.yml index b2ed7a8..e3315b9 100644 --- a/integration_tests/dbt_project.yml +++ b/integration_tests/dbt_project.yml @@ -50,7 +50,7 @@ dispatch: models: +persist_docs: relation: true - columns: true + columns: "{{ false if target.type in ('databricks') else true }}" +schema: "app_reporting_{{ var('directed_schema','dev') }}" ## To be used for validation testing seeds: