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

update schema config #6533

Merged
merged 2 commits into from
Nov 25, 2024
Merged
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
4 changes: 3 additions & 1 deletion website/docs/reference/resource-configs/schema.md
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,9 @@
Refer to [Usage](#usage) for more examples.

## Definition
Optionally specify a custom schema for a [model](/docs/build/sql-models) or [seed](/docs/build/seeds). (To specify a schema for a [snapshot](/docs/build/snapshots), use the [`target_schema` config](/reference/resource-configs/target_schema)).
Optionally specify a custom schema for a [model](/docs/build/sql-models), [seed](/docs/build/seeds), [snapshot](/docs/build/snapshots), [saved query](/docs/build/saved-queries), or [test](/docs/build/data-tests).

For users on dbt Cloud v1.8 or earlier, use the [`target_schema` config](/reference/resource-configs/target_schema) to specify a custom schema for a snapshot.

Check warning on line 113 in website/docs/reference/resource-configs/schema.md

View workflow job for this annotation

GitHub Actions / vale

[vale] website/docs/reference/resource-configs/schema.md#L113

[custom.Typos] Oops there's a typo -- did you really mean 'v1.8'?
Raw output
{"message": "[custom.Typos] Oops there's a typo -- did you really mean 'v1.8'? ", "location": {"path": "website/docs/reference/resource-configs/schema.md", "range": {"start": {"line": 113, "column": 24}}}, "severity": "WARNING"}

When dbt creates a relation (<Term id="table" />/<Term id="view" />) in a database, it creates it as: `{{ database }}.{{ schema }}.{{ identifier }}`, e.g. `analytics.finance.payments`

Expand Down
Loading