How do I use the UUIDField in my model?
If i do
somefield = UUIDField
i get:
UUIDField is not defined.
I do import uuid on top of my models file.
And i have django_extensions in installed apps...
How do I use the UUIDField in my model?
If i do
somefield = UUIDField
i get:
UUIDField is not defined.
I do import uuid on top of my models file.
And i have django_extensions in installed apps...
Copyright © 2021 Jogjafile Inc.
A good place to see how to use features of a Django app is in the app's tests.
Here are some example models from django-extension's UUIDField tests that demonstrate how to use the field:
Without seeing the whole file, it's hard to tell what's going on. Make sure you import
UUIDField
fromdjango_extensions.db.fields
(like in the above example) and not Python'suuid
module.