django-uuid-primary-key icon indicating copy to clipboard operation
django-uuid-primary-key copied to clipboard

Django UUID Primary Key is a simple Django model utility that provides to store primary key id as uuid.

===== Django UUID Primary Key

Django UUID Primary Key is a simple Django model utility which provides to store primary key id as uuid.

Detailed documentation is in the "docs" directory. [Todo: docs directory]

Quick start

Install package::

pip install django-uuid-primary-key

Add "django_uuid_primary_key" to your INSTALLED_APPS setting like this::

INSTALLED_APPS = [
    ...
    'django_uuid_primary_key',
]