Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions labs/lab5.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,9 +105,10 @@ The store mappings are as follows:
2,London
3,Tokyo
```
(2) Execute `dbt seed` in the console at the bottom of your screen to make sure your seed uploads correctly.
(3) You can now reference that data as `{{ ref('stores') }}`. Add code in your `orders` model that adds a `store_name` column.
(4) Execute `dbt run -s orders` to make sure your updates run successfully.
(2) Add a `schema.yml` file in the `seeds/` directory and document your `stores` seed there (see [example](https://docs.getdbt.com/faqs/tests/testing-seeds#example))
(3) Execute `dbt seed` in the console at the bottom of your screen to make sure your seed uploads correctly.
(4) You can now reference that data as `{{ ref('stores') }}`. Add code in your `orders` model that adds a `store_name` column.
(5) Execute `dbt run -s orders` to make sure your updates run successfully.
</details>

## Links and Walkthrough Guides
Expand Down