Skip to content

Commit

Permalink
Merge branch 'current' into move-semantic-manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
matthewshaver authored Oct 10, 2024
2 parents 52c9c44 + a9e29f5 commit 5b7e982
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 5 deletions.
4 changes: 2 additions & 2 deletions website/docs/reference/resource-properties/constraints.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ models:
columns: [first_column, second_column, ...]
- type: foreign_key # multi_column
columns: [first_column, second_column, ...]
to: "{{ ref('other_model_name') }}"
to: ref('other_model_name')
to_columns: [other_model_first_column, other_model_second_columns, ...]
- type: check
columns: [first_column, second_column, ...]
Expand All @@ -64,7 +64,7 @@ models:
- type: not_null
- type: unique
- type: foreign_key
to: "{{ ref('other_model_name') }}"
to: ref('other_model_name')
to_columns: other_model_column
- type: ...
```
Expand Down
14 changes: 11 additions & 3 deletions website/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,19 +72,21 @@ var siteSettings = {
},
announcementBar: {
id: "biweekly-demos",
content: "Register now for Coalesce 2024 ✨ The Analytics Engineering Conference!",
content:
"Register now for Coalesce 2024 ✨ The Analytics Engineering Conference!",
backgroundColor: "#7444FD",
textColor: "#fff",
isCloseable: true,
},
announcementBarActive: true,
announcementBarLink: "https://coalesce.getdbt.com/register/?utm_medium=internal&utm_source=docs&utm_campaign=q3-2025_coalesce-2024_aw&utm_content=coalesce____&utm_term=all_all__",
announcementBarLink:
"https://coalesce.getdbt.com/register/?utm_medium=internal&utm_source=docs&utm_campaign=q3-2025_coalesce-2024_aw&utm_content=coalesce____&utm_term=all_all__",
// Set community spotlight member on homepage
// This is the ID for a specific file under docs/community/spotlight
communitySpotlightMember: "meagan-palmer",
prism: {
theme: (() => {
var theme = themes.nightOwl;
var theme = themes.nightOwl;
// Add additional rule to nightowl theme in order to change
// the color of YAML keys (to be different than values).
// There weren't many Prism themes that differentiated
Expand Down Expand Up @@ -200,6 +202,12 @@ var siteSettings = {
links: [
{
html: `
<script
src="https://solve-widget.forethought.ai/embed.js" id="forethought-widget-embed-script" data-api-key="9d421bf3-96b8-403e-9900-6fb059132264"
data-ft-workflow-tag="docs"
config-ft-greeting-message="Welcome to dbt Product docs! Ask a question."
></script>
<div class='footer__items'>
<a href='https://www.getdbt.com/cloud/terms/'>Terms of Service</a>
<a href='https://www.getdbt.com/cloud/privacy-policy/'>Privacy Policy</a>
Expand Down

0 comments on commit 5b7e982

Please sign in to comment.