Files
packager/.sqlx/query-451e4983d939cc2906192d7cefaf0634cc69f1f0460a75b740a0459b85ef9a4f.json

33 lines
939 B
JSON
Raw Permalink 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 trips.user_id = $2\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": 2
},
"nullable": [
false,
false,
false
]
},
2024-04-30 09:05:17 +02:00
"hash": "451e4983d939cc2906192d7cefaf0634cc69f1f0460a75b740a0459b85ef9a4f"
2023-09-13 00:44:59 +02:00
}