forked from
tranquil.farm/tranquil-pds
Our Personal Data Server from scratch!
580 B
24 lines
1{
2 "db_name": "PostgreSQL",
3 "query": "UPDATE users SET telegram_chat_id = $2, telegram_verified = TRUE, updated_at = NOW() WHERE LOWER(telegram_username) = LOWER($1) AND telegram_username IS NOT NULL AND handle = $3 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 "Text"
17 ]
18 },
19 "nullable": [
20 false
21 ]
22 },
23 "hash": "fc1ef8c0979206bf95cccee7c39614f7c882860c39cfe94e411cf6e1d55b63f4"
24}