Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm getting an integer out of range error when trying to migrate my database from SQLite to PostgreSQL.

I think I have pinpointed the problem: I have some huge integers in a IntegerField field in my model.

Basically on the order of 52675215334.

When I change this value to a small number like 1 and then try to migrate my database, all is fine.

Is there some other data type I should be using other than IntegerField to store these large values?

share|improve this question
1  
possible duplicate of Big integer field in django models – FogleBird Jul 2 '12 at 23:50
1  
Those numbers are bigger than can fit in a 32 bit int. Try "bigint" postgresql.org/docs/8.2/static/datatype-numeric.html – Paul Tomblin Jul 2 '12 at 23:50
SQLite has more slack than <insert dirty reference here>. – Ignacio Vazquez-Abrams Jul 2 '12 at 23:59

1 Answer

up vote 2 down vote accepted

Try using BigIntegerField if you integers are that big. From the documentation:

A 64 bit integer, much like an IntegerField except that it is guaranteed to fit numbers from -9223372036854775808 to 9223372036854775807. The admin represents this as an <input type="text"> (a single-line input).

share|improve this answer
1  
Thanks... in the end I realized I could actually store the value as a CharField since it's only used to append to URLs, but this would have worked too. – user1328021 Jul 3 '12 at 2:40

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.