Fix raw SQL migrations spec in schema.json (#264)

[User facing
](7e65cda1ed/pkg/migrations/op_common.go (L25))
these operations are called `sql`, not `raw_sql`
This commit is contained in:
Carlos Pérez-Aradros Herce 2024-02-02 09:59:09 +01:00 committed by GitHub
parent 7e65cda1ed
commit bb79eecc3b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -415,11 +415,11 @@
"description": "Raw SQL operation",
"additionalProperties": false,
"properties": {
"raw_sql": {
"sql": {
"$ref": "#/$defs/OpRawSQL"
}
},
"required": ["raw_sql"]
"required": ["sql"]
},
{
"type": "object",