Skip to content

Commit

Permalink
update db from dbt-tutorial to raw
Browse files Browse the repository at this point in the history
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
  • Loading branch information
mirnawong1 authored Mar 7, 2024
1 parent ff218c7 commit 64d3d4b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions website/snippets/quickstarts/_build-your-first-model.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ with customers as (
first_name,
last_name

from `dbt-tutorial`.jaffle_shop.customers
from raw.jaffle_shop.customers

),

Expand All @@ -30,7 +30,7 @@ orders as (
order_date,
status

from `dbt-tutorial`.jaffle_shop.orders
from raw.jaffle_shop.orders

),

Expand Down

0 comments on commit 64d3d4b

Please sign in to comment.