Skip to content

Commit

Permalink
Add on_configuration_change to 1.6 files
Browse files Browse the repository at this point in the history
  • Loading branch information
joellabes committed Dec 13, 2023
1 parent b7426eb commit 3e147e5
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
10 changes: 10 additions & 0 deletions schemas/1.6/dbt_project-1.6.json
Original file line number Diff line number Diff line change
Expand Up @@ -289,6 +289,9 @@
},
"+meta": {
"$ref": "#/$defs/meta"
},
"+on_configuration_change": {
"$ref": "#/$defs/on_configuration_change"
},
"+on_schema_change": {
"$ref": "#/$defs/on_schema_change"
Expand Down Expand Up @@ -368,6 +371,9 @@
},
"meta": {
"$ref": "#/$defs/meta"
},
"on_configuration_change": {
"$ref": "#/$defs/on_configuration_change"
},
"on_schema_change": {
"$ref": "#/$defs/on_schema_change"
Expand Down Expand Up @@ -831,6 +837,10 @@
"materialized": {
"type": "string"
},
"on_configuration_change": {
"type": "string",
"enum": ["apply", "continue", "fail"]
},
"on_schema_change": {
"type": "string",
"enum": ["append_new_columns", "fail", "ignore", "sync_all_columns"]
Expand Down
8 changes: 8 additions & 0 deletions schemas/1.6/dbt_yml_files-1.6.json
Original file line number Diff line number Diff line change
Expand Up @@ -1111,6 +1111,14 @@
},
"materialized": {
"type": "string"
},
"on_configuration_change": {
"type": "string",
"enum": ["apply", "continue", "fail"]
},
"on_schema_change": {
"type": "string",
"enum": ["append_new_columns", "fail", "ignore", "sync_all_columns"]
},
"sql_header": {
"type": "string"
Expand Down

0 comments on commit 3e147e5

Please sign in to comment.