fix: Incorrect data type on import page (#27307)

This commit is contained in:
Michael S. Molina
2024-02-29 10:03:20 -05:00
committed by GitHub
parent 7854b622a3
commit fa04eec2d5

View File

@@ -146,7 +146,8 @@ class CsvToDatabaseForm(UploadToDatabaseForm):
description=_(
"A dictionary with column names and their data types"
" if you need to change the defaults."
' Example: {"user_id":"integer"}'
' Example: {"user_id":"int"}. '
"Check Python's Pandas library for supported data types."
),
validators=[Optional()],
widget=BS3TextFieldWidget(),