start project

This commit is contained in:
Pablo Martin 2024-01-18 11:24:35 +01:00
parent 82b9adb085
commit 727431b7b2
13 changed files with 1432 additions and 23 deletions

21
models/example/schema.yml Normal file
View file

@ -0,0 +1,21 @@
version: 2
models:
- name: my_first_dbt_model
description: "A starter dbt model"
columns:
- name: id
description: "The primary key for this table"
tests:
- unique
- not_null
- name: my_second_dbt_model
description: "A starter dbt model"
columns:
- name: id
description: "The primary key for this table"
tests:
- unique
- not_null