graphql-engine/server/testcases/drop_pkey.json
2018-06-28 00:32:00 +05:30

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"
}
}
}
]
}