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": "\n SELECT id, token_id, created_at, expires_at, client_id\n FROM oauth_token\n WHERE did = $1 AND expires_at > NOW()\n ORDER BY created_at DESC\n ", 4 "describe": { 5 "columns": [ 6 { 7 "ordinal": 0, 8 "name": "id", 9 "type_info": "Int4" 10 }, 11 { 12 "ordinal": 1, 13 "name": "token_id", 14 "type_info": "Text" 15 }, 16 { 17 "ordinal": 2, 18 "name": "created_at", 19 "type_info": "Timestamptz" 20 }, 21 { 22 "ordinal": 3, 23 "name": "expires_at", 24 "type_info": "Timestamptz" 25 }, 26 { 27 "ordinal": 4, 28 "name": "client_id", 29 "type_info": "Text" 30 } 31 ], 32 "parameters": { 33 "Left": [ 34 "Text" 35 ] 36 }, 37 "nullable": [ 38 false, 39 false, 40 false, 41 false, 42 false 43 ] 44 }, 45 "hash": "ae087ec3cf8f1c731b7a84f75e3e6cf25416362e28b149bf257810d79911028e" 46}