-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdefault_postgres.json
More file actions
32 lines (32 loc) · 850 Bytes
/
default_postgres.json
File metadata and controls
32 lines (32 loc) · 850 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"^bigint$": "i64",
"^bigserial$": "u64",
"^bytea$": "Vec<u8>",
"^char$": "String",
"^char\\(\\d+\\)$": "String",
"^date$": "Date",
"^decimal$": "Decimal",
"^double$": "Decimal",
"^integer$": "i32",
"^interval$": "String",
"^json$": "String",
"^jsonb$": "String",
"^jsonpath$": "String",
"^money$": "Decimal",
"^numeric$": "Decimal",
"^precision$": "Decimal",
"^real$": "Decimal",
"^serial$": "u32",
"^smallint$": "i16",
"^smallserial$": "u16",
"^text$": "String",
"^time with time zone$": "NaiveDateTime",
"^time$": "NaiveDateTime",
"^timestamp with time zone$": "NaiveDateTime",
"^timestamp$": "NaiveDateTime",
"^uuid$": "String",
"^varchar$": "String",
"^varchar\\(\\d+\\)$": "String",
"^xml$": "String",
"^boolean$": "bool"
}