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 ),