Skip to content

Commit

Permalink
prepare query data
Browse files Browse the repository at this point in the history
  • Loading branch information
Austionian committed Dec 8, 2023
1 parent 268f4cf commit 31ed8b8
Showing 1 changed file with 32 additions and 30 deletions.
62 changes: 32 additions & 30 deletions sqlx-data.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,37 @@
{
"db": "PostgreSQL",
"00e6c2ba17d9aecde3abe590c648cae02317cb34a4d6533b87186dd535dd0c71": {
"describe": {
"columns": [],
"nullable": [],
"parameters": {
"Left": [
"Uuid",
"Text",
"TextArray",
"TextArray",
"Text"
]
}
},
"query": "\n INSERT INTO recipe (id, name, ingredients, steps, image_url)\n VALUES ($1, $2, $3, $4, $5)\n "
},
"02d0ce5185ed39ea5288536252984189eb8c95a38dd0902b8481cd5b98c0ead7": {
"describe": {
"columns": [],
"nullable": [],
"parameters": {
"Left": [
"Text",
"TextArray",
"TextArray",
"Text",
"Uuid"
]
}
},
"query": "\n UPDATE recipe\n SET \n name = $1,\n ingredients = $2,\n steps = $3,\n image_url = $4\n WHERE id = $5\n "
},
"0357b796e720fbf79ef413e136329adae7b34993c8eac47b2a52635707a7eeab": {
"describe": {
"columns": [],
Expand Down Expand Up @@ -299,21 +331,6 @@
},
"query": "\n DELETE FROM users\n WHERE id=$1\n "
},
"28f9fc2f01f289779caeebb39780a75e2df7c34f5d764639d00bf14e19156d41": {
"describe": {
"columns": [],
"nullable": [],
"parameters": {
"Left": [
"Text",
"TextArray",
"TextArray",
"Uuid"
]
}
},
"query": "\n UPDATE recipe\n SET \n name = $1,\n ingredients = $2,\n steps = $3\n WHERE id = $4\n "
},
"2bdf58576e0781cc279f0cab96822644e5bc11b651af349b86a12177224b36ff": {
"describe": {
"columns": [],
Expand Down Expand Up @@ -384,21 +401,6 @@
},
"query": "\n SELECT\n id,\n name,\n ingredients,\n steps,\n image_url\n FROM recipe\n WHERE recipe.id\n IN (\n SELECT \n recipe_id\n FROM fishtype_recipe\n WHERE fishtype_id = $1\n );\n "
},
"3c59429f7ab50937ecc8dba8959e81c60a0839b29f77e246fc3f3d0ff3b4343d": {
"describe": {
"columns": [],
"nullable": [],
"parameters": {
"Left": [
"Uuid",
"Text",
"TextArray",
"TextArray"
]
}
},
"query": "\n INSERT INTO recipe (id, name, ingredients, steps)\n VALUES ($1, $2, $3, $4)\n "
},
"3ca77be1104ca7655c5ccc158762d8aaf86d98b7a2bb1c040f6216122b52b084": {
"describe": {
"columns": [],
Expand Down

0 comments on commit 31ed8b8

Please sign in to comment.