[Django]-Best model field to use for a 128-bit UUID in Django

3👍

Django 1.8 introduced UUIDField. It uses UUID class from standard python library in which data is stored in different byte order from what you’ve presented, but as far as I know python UUID class can present UUID in various formats.

Prior to Django 1.8 you can use some third party package for that.

Leave a comment