Skip to main content

max / makenotwork

1.1 KB · 47 lines History Blame Raw
1 {
2 "db_name": "PostgreSQL",
3 "query": "SELECT mnw_account_id AS id, username, display_name,\n suspended_at AS \"suspended_at: chrono::DateTime<chrono::Utc>\",\n suspension_reason\n FROM users\n WHERE username ILIKE $1 ESCAPE '\\'\n ORDER BY username\n LIMIT 50",
4 "describe": {
5 "columns": [
6 {
7 "ordinal": 0,
8 "name": "id",
9 "type_info": "Uuid"
10 },
11 {
12 "ordinal": 1,
13 "name": "username",
14 "type_info": "Text"
15 },
16 {
17 "ordinal": 2,
18 "name": "display_name",
19 "type_info": "Text"
20 },
21 {
22 "ordinal": 3,
23 "name": "suspended_at: chrono::DateTime<chrono::Utc>",
24 "type_info": "Timestamptz"
25 },
26 {
27 "ordinal": 4,
28 "name": "suspension_reason",
29 "type_info": "Text"
30 }
31 ],
32 "parameters": {
33 "Left": [
34 "Text"
35 ]
36 },
37 "nullable": [
38 false,
39 false,
40 true,
41 true,
42 true
43 ]
44 },
45 "hash": "b28b3a1e721252c442704127d138070f919ae50083a96e7c76596a26a4050e16"
46 }
47