Files
packager/.sqlx/query-14e277298aa5ae032943a0d19e41d5fd444520c6555b2a55ba43c9547fc3b450.json

33 lines
977 B
JSON
Raw Normal View History

2023-09-13 00:44:59 +02:00
{
"db_name": "SQLite",
2024-04-30 09:05:17 +02:00
"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 ",
2023-09-13 00:44:59 +02:00
"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
]
},
2024-04-30 09:05:17 +02:00
"hash": "14e277298aa5ae032943a0d19e41d5fd444520c6555b2a55ba43c9547fc3b450"
2023-09-13 00:44:59 +02:00
}