Skip to content

Commit

Permalink
Merge pull request #95 from dbt-labs/allow-schema-null
Browse files Browse the repository at this point in the history
NULL schemas are allowed
  • Loading branch information
will-sargent-dbtlabs authored Oct 18, 2023
2 parents 38c6d7e + cea30f4 commit d3bc0f3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion schemas/1.5/dbt_project-1.5.json
Original file line number Diff line number Diff line change
Expand Up @@ -813,7 +813,7 @@
"type": "object"
},
"schema": {
"type": "string"
"type": ["string", "null"]
},
"sql_header": {
"type": "string"
Expand Down
2 changes: 1 addition & 1 deletion schemas/1.6/dbt_project-1.6.json
Original file line number Diff line number Diff line change
Expand Up @@ -781,7 +781,7 @@
"type": "object"
},
"schema": {
"type": "string"
"type": ["string", "null"]
},
"sql_header": {
"type": "string"
Expand Down
2 changes: 1 addition & 1 deletion schemas/dbt_project.json
Original file line number Diff line number Diff line change
Expand Up @@ -804,7 +804,7 @@
"enum": ["append_new_columns", "fail", "ignore", "sync_all_columns"]
},
"schema": {
"type": "string"
"type": ["string", "null"]
},
"sql_header": {
"type": "string"
Expand Down

0 comments on commit d3bc0f3

Please sign in to comment.