File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -235,12 +235,12 @@ def convert_postgres_array_to_list(field, registry=None):
235
235
236
236
@convert_django_field .register (HStoreField )
237
237
@convert_django_field .register (JSONField )
238
- def convert_posgres_field_to_string (field , registry = None ):
238
+ def convert_postgres_field_to_string (field , registry = None ):
239
239
return JSONString (description = field .help_text , required = not field .null )
240
240
241
241
242
242
@convert_django_field .register (RangeField )
243
- def convert_posgres_range_to_string (field , registry = None ):
243
+ def convert_postgres_range_to_string (field , registry = None ):
244
244
inner_type = convert_django_field (field .base_field )
245
245
if not isinstance (inner_type , (List , NonNull )):
246
246
inner_type = type (inner_type )
You can’t perform that action at this time.
0 commit comments