[Answer]-Django – default value migration – will this touch database?

1👍

No, it doesn’t touch the database.

It does not effect the behavior of setting defaults in the database directly – Django never sets database defaults and always applies them in the Django ORM code.

(in fact applying such migrations only marks them as applied and that’s all, no real work is performed)

Leave a comment