Open codinghipster opened 3 months ago
The Django CharField (for better or worse) supports numbers, which it will then coerce into a string before saving.
If you switch from CharField to PhonenumberField on a given model, you may see regressions where you were previously taking in a number.
The Django CharField (for better or worse) supports numbers, which it will then coerce into a string before saving.
If you switch from CharField to PhonenumberField on a given model, you may see regressions where you were previously taking in a number.