forked from
tranquil.farm/tranquil-pds
Our Personal Data Server from scratch!
1{
2 "db_name": "PostgreSQL",
3 "query": "INSERT INTO blobs (cid, mime_type, size_bytes, created_by_user, storage_key)\n VALUES ($1, $2, $3, $4, $5)\n ON CONFLICT (cid) DO NOTHING RETURNING cid",
4 "describe": {
5 "columns": [
6 {
7 "ordinal": 0,
8 "name": "cid",
9 "type_info": "Text"
10 }
11 ],
12 "parameters": {
13 "Left": [
14 "Text",
15 "Text",
16 "Int8",
17 "Uuid",
18 "Text"
19 ]
20 },
21 "nullable": [
22 false
23 ]
24 },
25 "hash": "8afea2b745385348f4c78b51f74145d6718bfcf9a3a0c218109ec691aeb930ba"
26}