Your first PRlesson 7 of 9

  1. set up
  2. pick data
  3. find source
  4. place it
  5. model
  6. YAML
  7. build
  8. PR
  9. merge

Build it

dbt build -s stg_reference_opening_hours

build = run the model and its tests, in order, in the DEV__ databases — the shared development copy of the warehouse. Nothing you do here touches production.

You should see:

1 of 4 OK created sql view model ...stg_reference_opening_hours  [SUCCESS]
2 of 4 PASS not_null_..._site_code                               [PASS]
3 of 4 PASS not_null_..._day_of_week                             [PASS]
4 of 4 PASS dbt_utils_unique_combination_of_columns_...          [PASS]
Completed successfully

step 1 of 7