mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-15 17:31:56 +03:00
44 lines
848 B
JSON
44 lines
848 B
JSON
|
{
|
||
|
"description": "drop primary_key",
|
||
|
"depends": [],
|
||
|
"items": [
|
||
|
{
|
||
|
"name": "create_schema",
|
||
|
"url": "/api/1/query",
|
||
|
"role": "admin",
|
||
|
"status_code": 200,
|
||
|
"method": "POST",
|
||
|
"user_id": "1",
|
||
|
"request": {
|
||
|
"kind": "create_table",
|
||
|
"body": {
|
||
|
"primary_key": [
|
||
|
"id"
|
||
|
],
|
||
|
"name": "a",
|
||
|
"columns": [
|
||
|
{
|
||
|
"type": "serial",
|
||
|
"name": "id"
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
{
|
||
|
"name": "drop primary_key",
|
||
|
"url": "/api/1/query",
|
||
|
"role": "admin",
|
||
|
"status_code": 200,
|
||
|
"method": "POST",
|
||
|
"user_id": "1",
|
||
|
"request": {
|
||
|
"kind": "drop_constraint",
|
||
|
"body": {
|
||
|
"table": "a",
|
||
|
"constraint": "a_pkey"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
]
|
||
|
}
|