Use strings, not constants in Django migrations
React, Django and SQL developer at Forma.ai

# migrations/0001_my_migration.py
from my_file import MY_CONSTANT
MyModel.objects.get_or_create(name=MY_CONSTANT)

# migrations/0001_my_migration.py
MyModel.objects.get_or_create(name="my-constant")
Why
value of
LOCALIZATION.BUNDLE__SYNCcould changeAfter the change, the migration behaves differently than when it was first written
might even fail 😱
(we all know how terrifying failing migrations are 😭)