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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 1 deletions

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(),