Our Personal Data Server from scratch!
0
fork

Configure Feed

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

at fix/code-quality-in-general 46 lines 1.0 kB view raw
1{ 2 "db_name": "PostgreSQL", 3 "query": "SELECT ic.code, ic.available_uses, ic.disabled, ic.created_by_user, ic.created_at\n FROM invite_codes ic\n ORDER BY created_at DESC\n LIMIT $1", 4 "describe": { 5 "columns": [ 6 { 7 "ordinal": 0, 8 "name": "code", 9 "type_info": "Text" 10 }, 11 { 12 "ordinal": 1, 13 "name": "available_uses", 14 "type_info": "Int4" 15 }, 16 { 17 "ordinal": 2, 18 "name": "disabled", 19 "type_info": "Bool" 20 }, 21 { 22 "ordinal": 3, 23 "name": "created_by_user", 24 "type_info": "Uuid" 25 }, 26 { 27 "ordinal": 4, 28 "name": "created_at", 29 "type_info": "Timestamptz" 30 } 31 ], 32 "parameters": { 33 "Left": [ 34 "Int8" 35 ] 36 }, 37 "nullable": [ 38 false, 39 false, 40 true, 41 false, 42 false 43 ] 44 }, 45 "hash": "01e56fffc3ca615c5da3cc8edd363700bd2f8c05167fa1100dd504d01f9f1d23" 46}