File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,7 @@ Unreleased
33
44- Fix reflection of CHAR columns (#275 )
55- Fix reflection of TIMESTAMPTZ columns (#276 ), thanks to @nvachhar
6+ - Fix reflection of JSONB columns (#277 )
67
78
89# Version 2.0.3
Original file line number Diff line number Diff line change 77from sqlalchemy .dialects .postgresql import ARRAY
88from sqlalchemy .dialects .postgresql import INET
99from sqlalchemy .dialects .postgresql import UUID
10+ from sqlalchemy .dialects .postgresql import JSONB
1011from sqlalchemy .ext .compiler import compiles
1112from sqlalchemy .util import warn
1213import sqlalchemy .sql as sql
6061 "bytea" : sqltypes .BLOB ,
6162 "bytes" : sqltypes .BLOB ,
6263 "json" : sqltypes .JSON ,
63- "jsonb" : sqltypes . JSON ,
64+ "jsonb" : JSONB ,
6465 "uuid" : UUID ,
6566 "inet" : INET ,
6667}
You can’t perform that action at this time.
0 commit comments