Answer the question
In order to leave comments, you need to log in
What's the difference between different IntegerField?
Good evening. I am learning Django. Can you please tell me what is the difference between BigIntegerField , PositiveIntegerField , SmallIntegerField , IntegerField and other type fields?
UPD: how does this affect the database and what is the benefit of using specific field types?
Answer the question
In order to leave comments, you need to log in
UPD: how does this affect the database and what is the benefit of using specific field types?
BigIntegerField can store values from -9223372036854775808 to 9223372036854775807
PositiveIntegerField only positive numbers from 0 to 2147483647
SmallIntegerField values from -32768 to 32767
IntegerField values from -2147483648 to 2147483647
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question