Django storing mobile number, what field to use?
There is a regex field in form validation. In model use just CharField.
I think is a interesting question since it really depends on the problem modeling, CharField works fine, but have a look at this:
ORM tricks
Phone numbers must be CharFields. Integer field will not preserve leading 0, +, and spacing.