Spaces:
Running
Running
Jon Solow
commited on
Commit
·
96d7dde
1
Parent(s):
7e0ad06
Uncomment from example and add duckdb file to gitignore
Browse files
.gitignore
CHANGED
@@ -164,3 +164,5 @@ secrets.toml
|
|
164 |
|
165 |
.ipynb_checkpoints
|
166 |
*.ipynb
|
|
|
|
|
|
164 |
|
165 |
.ipynb_checkpoints
|
166 |
*.ipynb
|
167 |
+
|
168 |
+
*.duckdb
|
src/dbt_yfdash/models/example/my_first_dbt_model.sql
CHANGED
@@ -24,4 +24,4 @@ from source_data
|
|
24 |
Uncomment the line below to remove records with null `id` values
|
25 |
*/
|
26 |
|
27 |
-
|
|
|
24 |
Uncomment the line below to remove records with null `id` values
|
25 |
*/
|
26 |
|
27 |
+
where id is not null
|