I need to change a DecimalField
from having decimal_places=0
to decimal_places=7
while keeping max_digits=50
. I think all numbers in this column are between 0 and 1,000,000,000. So the data migration could be unproblematic. However, I'm uncertain.
I have seen the AlterField
documentation and I think I found the source code. However, I would need an introduction to this. Is it possible to see the generated SQL queries?
I could imagine several things going wrong:
- Data Dropping if
Decimal(decimal_places=0)
is different fromDecimal(decimal_places=7)
in a way that Django/Postgres does not take care of - Data Change if the internal representation stays the same but the values are interpreted in a different way
- Overflow if values get out of bounds
- NaN / NULL if values get out of bounds
The last two cases should not happen in my specific case, but I'm still interested how Django migrations would deal with out of bounds cases.
Yes it is possible to see the generated SQL Query. You can do that by using the
sqlmigrate
[Django docs] management command (app_label
is the name of your app andmigration_name
is the name of the migration, e.g.0001
,0002
, etc.):This outputs for me the following SQL:
As to your question if this can go wrong, according to the PostgeSQL docs on Numeric Types: 8.1.2. Arbitrary Precision Numbers:
Also from the PostgreSQL documentation Modifying Tables: 5.5.6. Changing a Column's Data Type:
Hence if your migration would not be possible it would cause an error.