Files
packager/.sqlx/query-14e277298aa5ae032943a0d19e41d5fd444520c6555b2a55ba43c9547fc3b450.json
2024-04-30 09:05:17 +02:00

33 lines
977 B
JSON

{
"db_name": "SQLite",
"query": "\n SELECT\n todo.id AS id,\n todo.description AS description,\n todo.done AS done\n FROM trip_todos AS todo\n INNER JOIN trips\n ON trips.id = todo.trip_id\n WHERE\n trips.id = $1\n AND todo.id = $2\n AND trips.user_id = $3\n ",
"describe": {
"columns": [
{
"name": "id",
"ordinal": 0,
"type_info": "Text"
},
{
"name": "description",
"ordinal": 1,
"type_info": "Text"
},
{
"name": "done",
"ordinal": 2,
"type_info": "Bool"
}
],
"parameters": {
"Right": 3
},
"nullable": [
false,
false,
false
]
},
"hash": "14e277298aa5ae032943a0d19e41d5fd444520c6555b2a55ba43c9547fc3b450"
}