Skip to content

Commit

Permalink
Make required
Browse files Browse the repository at this point in the history
Signed-off-by: Alexis Rico <[email protected]>
  • Loading branch information
SferaDev committed Dec 18, 2023
1 parent c01ce36 commit 4d74c3a
Showing 1 changed file with 22 additions and 11 deletions.
33 changes: 22 additions & 11 deletions schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,8 @@
"add_column": {
"$ref": "#/$defs/OpAddColumn"
}
}
},
"required": ["add_column"]
},
{
"type": "object",
Expand All @@ -341,7 +342,8 @@
"alter_column": {
"$ref": "#/$defs/OpAlterColumn"
}
}
},
"required": ["alter_column"]
},
{
"type": "object",
Expand All @@ -351,7 +353,8 @@
"create_index": {
"$ref": "#/$defs/OpCreateIndex"
}
}
},
"required": ["create_index"]
},
{
"type": "object",
Expand All @@ -361,7 +364,8 @@
"create_table": {
"$ref": "#/$defs/OpCreateTable"
}
}
},
"required": ["create_table"]
},
{
"type": "object",
Expand All @@ -371,7 +375,8 @@
"drop_column": {
"$ref": "#/$defs/OpDropColumn"
}
}
},
"required": ["drop_column"]
},
{
"type": "object",
Expand All @@ -381,7 +386,8 @@
"drop_constraint": {
"$ref": "#/$defs/OpDropConstraint"
}
}
},
"required": ["drop_constraint"]
},
{
"type": "object",
Expand All @@ -391,7 +397,8 @@
"drop_index": {
"$ref": "#/$defs/OpDropIndex"
}
}
},
"required": ["drop_index"]
},
{
"type": "object",
Expand All @@ -401,7 +408,8 @@
"drop_table": {
"$ref": "#/$defs/OpDropTable"
}
}
},
"required": ["drop_table"]
},
{
"type": "object",
Expand All @@ -411,7 +419,8 @@
"raw_sql": {
"$ref": "#/$defs/OpRawSQL"
}
}
},
"required": ["raw_sql"]
},
{
"type": "object",
Expand All @@ -421,7 +430,8 @@
"rename_table": {
"$ref": "#/$defs/OpRenameTable"
}
}
},
"required": ["rename_table"]
},
{
"type": "object",
Expand All @@ -431,7 +441,8 @@
"set_replica_identity": {
"$ref": "#/$defs/OpSetReplicaIdentity"
}
}
},
"required": ["set_replica_identity"]
}
]
},
Expand Down

0 comments on commit 4d74c3a

Please sign in to comment.