django-smalluuid
django-smalluuid copied to clipboard
Short-form UUID model & form fields for Django 1.8 and above
I tried to pass a uuid as a parameter and was unable to do so with something like: `response = self.client.post(django.urls.reverse('app_name:method', args=(obj.uuid,)), data) ` Returning an error like > django.urls.exceptions.NoReverseMatch:...
I have added the SmallUUID field's name to the ModelAdmin's `search_fields` but when I search for the string value nothing is found.
Just seems sensible
Should reflect this: https://docs.djangoproject.com/en/1.10/howto/writing-migrations/#migrations-that-add-unique-fields However, I had to do it along these lines: ``` class Migration(migrations.Migration): dependencies = [ ('hordak', '0009_auto_20160910_1330'), ] operations = [ migrations.AddField( model_name='account', name='uuid', field=django_smalluuid.models.SmallUUIDField(default=None, null=True,...