Our Personal Data Server from scratch!
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at fix/small-bugs 26 lines 602 B view raw
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}