forked from
tranquil.farm/tranquil-pds
Our Personal Data Server from scratch!
1{
2 "db_name": "PostgreSQL",
3 "query": "\n DELETE FROM sso_auth_state\n WHERE state = $1 AND expires_at > NOW()\n RETURNING state, request_uri, provider as \"provider: SsoProviderType\", action,\n nonce, code_verifier, did, created_at, expires_at\n ",
4 "describe": {
5 "columns": [
6 {
7 "ordinal": 0,
8 "name": "state",
9 "type_info": "Text"
10 },
11 {
12 "ordinal": 1,
13 "name": "request_uri",
14 "type_info": "Text"
15 },
16 {
17 "ordinal": 2,
18 "name": "provider: SsoProviderType",
19 "type_info": {
20 "Custom": {
21 "name": "sso_provider_type",
22 "kind": {
23 "Enum": [
24 "github",
25 "discord",
26 "google",
27 "gitlab",
28 "oidc",
29 "apple"
30 ]
31 }
32 }
33 }
34 },
35 {
36 "ordinal": 3,
37 "name": "action",
38 "type_info": "Text"
39 },
40 {
41 "ordinal": 4,
42 "name": "nonce",
43 "type_info": "Text"
44 },
45 {
46 "ordinal": 5,
47 "name": "code_verifier",
48 "type_info": "Text"
49 },
50 {
51 "ordinal": 6,
52 "name": "did",
53 "type_info": "Text"
54 },
55 {
56 "ordinal": 7,
57 "name": "created_at",
58 "type_info": "Timestamptz"
59 },
60 {
61 "ordinal": 8,
62 "name": "expires_at",
63 "type_info": "Timestamptz"
64 }
65 ],
66 "parameters": {
67 "Left": [
68 "Text"
69 ]
70 },
71 "nullable": [
72 false,
73 false,
74 false,
75 false,
76 true,
77 true,
78 true,
79 false,
80 false
81 ]
82 },
83 "hash": "9468c5af2fb0e06e600e6c67e236bd4e368b06ce4af15fed16b8a0bfc5328c36"
84}