Our Personal Data Server from scratch!
0

Configure Feed

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

tranquil-pds / .sqlx / query-9d17e25776c67f96022010840c1d04bdd542b5bcc511b1778bab0159a4566e9c.json
716 B 23 lines
1{ 2 "db_name": "PostgreSQL", 3 "query": "UPDATE users SET telegram_chat_id = $2, telegram_verified = TRUE, updated_at = NOW()\n WHERE id = (\n SELECT id FROM users\n WHERE LOWER(telegram_username) = LOWER($1) AND telegram_username IS NOT NULL AND deactivated_at IS NULL\n LIMIT 1\n ) RETURNING id", 4 "describe": { 5 "columns": [ 6 { 7 "ordinal": 0, 8 "name": "id", 9 "type_info": "Uuid" 10 } 11 ], 12 "parameters": { 13 "Left": [ 14 "Text", 15 "Int8" 16 ] 17 }, 18 "nullable": [ 19 false 20 ] 21 }, 22 "hash": "9d17e25776c67f96022010840c1d04bdd542b5bcc511b1778bab0159a4566e9c" 23}