This commit is contained in:
sparshg
2024-09-23 22:43:01 +05:30
parent 64f2c27bfc
commit 027b875144
19 changed files with 392 additions and 12 deletions

View File

@@ -0,0 +1,45 @@
{
"db_name": "PostgreSQL",
"query": "SELECT player1_id, player2_id, stat AS \"stat: Status\" FROM rooms WHERE code = $1",
"describe": {
"columns": [
{
"ordinal": 0,
"name": "player1_id",
"type_info": "Bpchar"
},
{
"ordinal": 1,
"name": "player2_id",
"type_info": "Bpchar"
},
{
"ordinal": 2,
"name": "stat: Status",
"type_info": {
"Custom": {
"name": "stat",
"kind": {
"Enum": [
"waiting",
"p1turn",
"p2turn"
]
}
}
}
}
],
"parameters": {
"Left": [
"Bpchar"
]
},
"nullable": [
true,
true,
false
]
},
"hash": "6108a32cad01040d876e139b882da3d6a28c448b5a0ad12a67d8e77c64e7c230"
}