1{
2 "db_name": "PostgreSQL",
3 "query": "INSERT INTO identity (did, handle, active, status) VALUES ($1, $2, $3, $4) ON CONFLICT ON CONSTRAINT identity_pkey DO UPDATE SET (handle, active, status) = (EXCLUDED.handle, EXCLUDED.active, EXCLUDED.status)",
4 "describe": {
5 "columns": [],
6 "parameters": {
7 "Left": [
8 "Text",
9 "Text",
10 "Bool",
11 {
12 "Custom": {
13 "name": "identity_status",
14 "kind": {
15 "Enum": [
16 "active",
17 "takendown",
18 "suspended",
19 "deactivated",
20 "deleted"
21 ]
22 }
23 }
24 }
25 ]
26 },
27 "nullable": []
28 },
29 "hash": "61e1b073c39dd8231d37c3dfd61459de6f0d1fdba50469fed8e1065a829f43db"
30}