Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dbt-constraints-docs #2601

Merged
merged 28 commits into from
Feb 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
ca3dfcb
placeholder outline
sungchun12 Dec 19, 2022
9bb5245
add version blocks
sungchun12 Dec 19, 2022
99673b8
add to sidebar
sungchun12 Dec 19, 2022
4dc1c09
remove version blocks
sungchun12 Dec 19, 2022
1dea692
add 2 sections
sungchun12 Dec 19, 2022
ddeae87
postgres section example
sungchun12 Dec 19, 2022
8b5f874
add more docs
sungchun12 Dec 19, 2022
8788c7c
correct DDL
sungchun12 Dec 19, 2022
56004bd
correct config name
sungchun12 Dec 19, 2022
6fc8c70
fix data type
sungchun12 Dec 19, 2022
6e93abe
add redshift docs
dave-connors-3 Dec 21, 2022
769053e
Update constraints docs for Snowflake
b-per Dec 21, 2022
08daa11
Merge branch 'dbt-constraints-docs' of github.com:dbt-labs/docs.getdb…
b-per Dec 21, 2022
bff560e
Merge branch 'current' of https://github.com/dbt-labs/docs.getdbt.com…
sungchun12 Jan 3, 2023
bcdc1fa
add model config links
sungchun12 Jan 3, 2023
2d04d37
update warehouse to spark
sungchun12 Jan 3, 2023
63475b8
update not null syntax
sungchun12 Jan 3, 2023
2b0fc9e
add more config examples
sungchun12 Jan 4, 2023
c33f705
fix ordering
sungchun12 Jan 4, 2023
dc6634f
update docs based on new parsing
sungchun12 Jan 9, 2023
e295c43
add a note
sungchun12 Jan 17, 2023
181a07d
add example error messages
sungchun12 Feb 3, 2023
82a4752
Update config name on Redshift
b-per Feb 3, 2023
1df2052
Update description for Spark
b-per Feb 3, 2023
f97d987
add explainers
sungchun12 Feb 16, 2023
92eb51c
add check
sungchun12 Feb 16, 2023
b0243ff
remove fluff
sungchun12 Feb 16, 2023
f98639a
Merge branch 'current' into dbt-constraints-docs
sungchun12 Feb 16, 2023
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: 5 additions & 2 deletions website/docs/reference/model-configs.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ models:
[+](plus-prefix)[full_refresh](full_refresh): <boolean>
[+](plus-prefix)[meta](meta): {<dictionary>}
[+](plus-prefix)[grants](grants): {<dictionary>}
[+](plus-prefix)[constraints_enabled](constraints_enabled): true | false

```

Expand Down Expand Up @@ -134,6 +135,7 @@ models:
[full_refresh](full_refresh): <boolean>
[meta](meta): {<dictionary>}
[grants](grants): {<dictionary>}
[constraints_enabled](constraints_enabled): true | false
```

</File>
Expand All @@ -157,8 +159,9 @@ models:
[schema](resource-configs/schema)="<string>",
[alias](resource-configs/alias)="<string>",
[persist_docs](persist_docs)={<dict>},
[meta](meta)={<dict>}
[grants](grants)={<dict>}
[meta](meta)={<dict>},
[grants](grants)={<dict>},
[constraints_enabled](constraints_enabled)=true | false
) }}

```
Expand Down
Loading