forked from
tranquil.farm/tranquil-pds
Our Personal Data Server from scratch!
1{
2 "db_name": "PostgreSQL",
3 "query": "\n INSERT INTO external_identities (did, provider, provider_user_id)\n VALUES ($1, $2, $3)\n RETURNING id\n ",
4 "describe": {
5 "columns": [
6 {
7 "ordinal": 0,
8 "name": "id",
9 "type_info": "Uuid"
10 }
11 ],
12 "parameters": {
13 "Left": [
14 "Text",
15 {
16 "Custom": {
17 "name": "sso_provider_type",
18 "kind": {
19 "Enum": [
20 "github",
21 "discord",
22 "google",
23 "gitlab",
24 "oidc",
25 "apple"
26 ]
27 }
28 }
29 },
30 "Text"
31 ]
32 },
33 "nullable": [
34 false
35 ]
36 },
37 "hash": "2841093a67480e75e1e9e4046bf3eb74afae2d04f5ea0ec17a4d433983e6d71c"
38}