mirror of
https://github.com/hasura/graphql-engine.git
synced 2025-01-05 22:34:22 +03:00
24 lines
438 B
JSON
24 lines
438 B
JSON
{
|
|
"description": "drop column test",
|
|
"depends": [
|
|
"permission.json"
|
|
],
|
|
"items": [
|
|
{
|
|
"name": "create_schema",
|
|
"url": "/api/1/query",
|
|
"role": "admin",
|
|
"status_code": 200,
|
|
"method": "POST",
|
|
"user_id": "1",
|
|
"request": {
|
|
"kind": "drop_column",
|
|
"body":{
|
|
"table": "article",
|
|
"column": "author_id",
|
|
"cascade": true
|
|
}
|
|
}
|
|
}
|
|
]
|
|
} |