added offline mode
All checks were successful
Cargo Build & Test / Push to container registry (push) Successful in 2m45s

This commit is contained in:
2025-07-18 11:27:07 +02:00
parent 226e7114d4
commit 5ba6b1bf16
16 changed files with 425 additions and 0 deletions

View File

@@ -0,0 +1,38 @@
{
"db_name": "PostgreSQL",
"query": "\n INSERT INTO workout_exercises (workout_id, exercise_id, exercise_type, position, sets, reps, time)\n SELECT * FROM UNNEST($1::uuid[], $2::uuid[], $3::exercise_variant[], $4::int[], $5::int[], $6::int[], $7::int[])\n ",
"describe": {
"columns": [],
"parameters": {
"Left": [
"UuidArray",
"UuidArray",
{
"Custom": {
"name": "exercise_variant[]",
"kind": {
"Array": {
"Custom": {
"name": "exercise_variant",
"kind": {
"Enum": [
"time",
"number",
"failure"
]
}
}
}
}
}
},
"Int4Array",
"Int4Array",
"Int4Array",
"Int4Array"
]
},
"nullable": []
},
"hash": "cd1cd6869f9be3b1bc95c8b273451e29f26fd153bb6041a5040e2eaa285d51c4"
}