From 64d3d4b55de026e50943561a2953799e714041cf Mon Sep 17 00:00:00 2001 From: Mirna Wong <89008547+mirnawong1@users.noreply.github.com> Date: Thu, 7 Mar 2024 10:43:41 -0500 Subject: [PATCH] update db from dbt-tutorial to raw this pr updates the quickstarts database example to `raw` and not `dbt-tutorial`, which is the legacy db. this was raised by CS as a user was experiencing errors. https://dbt-labs.slack.com/archives/C02NCQ9483C/p1709805810303419 --- website/snippets/quickstarts/_build-your-first-model.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/snippets/quickstarts/_build-your-first-model.md b/website/snippets/quickstarts/_build-your-first-model.md index c09d16b0b1f..4e447c743cc 100644 --- a/website/snippets/quickstarts/_build-your-first-model.md +++ b/website/snippets/quickstarts/_build-your-first-model.md @@ -18,7 +18,7 @@ with customers as ( first_name, last_name - from `dbt-tutorial`.jaffle_shop.customers + from raw.jaffle_shop.customers ), @@ -30,7 +30,7 @@ orders as ( order_date, status - from `dbt-tutorial`.jaffle_shop.orders + from raw.jaffle_shop.orders ),